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