$(':checkbox').each(function() {
// Sisipkan elemen manipulasi tepat sebelum checkbox
if ($(this).is(":checked")) {
// Jika checkbox terdeteksi sudah dicek,
// sisipkan elemen manipulasi dengan tambahan kelas 'checked'
$(this).before('<a href="#" class="checkbox checked">✔</a>');
} else {
// Jika sebaliknya, jangan sertakan kelas 'checked'
$(this).before('<a href="#" class="checkbox">✔</a>');
}
}).click(function() { // Bagian ini tidak terlalu penting, tapi jika kita berhubungan dengan <label>, mungkin ini diperlukan
if ($(this).is(":checked")) {
$(this).prev().addClass('checked');
} else {
$(this).prev().removeClass('checked');
}
}).hide(); // Sembunyikan elemen checkbox yang asli
// Tugas checkbox dialihkan kepada elemen manipulasi
// namun elemen tersebut hanya bertugas sebagai pemicu...
// yang pada dasarnya akan tetap mempengaruhi elemen checkbox asli.
// Saat elemen a.checkbox diklik...
$('a.checkbox').click(function() {
// Jika elemen setelah a.checkbox sudah dicek...
if ($(this).next().is(":checked")) {
// Hilangkan kelas 'checked' pada diri sendiri dan hapus atribut checked pada elemen setelahnya
// (Dalam hal ini adalah checkbox)
$(this).removeClass('checked').next().removeAttr('checked');
} else {
// Jika sebaliknya, tambahkan kelas 'checked' pada diri sendiri dan set atribut checked pada elemen checkbox di sampingnya
$(this).addClass('checked').next().attr('checked', 'true');
}
return false;
});
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Console
Debug your Fiddle with a minimal built-in JavaScript console.