mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-06-08 00:27:58 +00:00
13 lines
394 B
JavaScript
13 lines
394 B
JavaScript
/*
|
|
* Create a more beautiful checkbox
|
|
*/
|
|
|
|
$(function() {
|
|
/* hide browser default checkbox */
|
|
$("input[type=checkbox]").addClass("unloaded");
|
|
/* create checked checkbox */
|
|
$("input[type=checkbox][checked]").before("<i class=\"fas fa-check-circle checked\"></i>");
|
|
/* create normal checkbox */
|
|
$("input[type=checkbox]:not([checked])").before("<i class=\"far fa-circle\"></i>");
|
|
});
|