web/assets/js/_commons/checkbox.js

13 lines
352 B
JavaScript
Raw Normal View History

/*
* Create a more beautiful checkbox
*/
$(function() {
2020-12-14 10:01:05 +03:00
/* hide browser default checkbox */
$("input[type=checkbox]").addClass("unloaded");
/* create checked checkbox */
2020-12-14 10:01:05 +03:00
$("input[type=checkbox][checked]").before("<span checked></span>");
/* create normal checkbox */
2020-12-14 10:01:05 +03:00
$("input[type=checkbox]:not([checked])").before("<span></span>");
});