jQuery Select / Deselect All Checkboxes
$(document).ready(function() { $(‘#selecctall’).click(function(event) { //on click if(this.checked) { // check select status $(‘.checkbox1’).each(function() { //loop through each checkbox this.checked = true; //select all checkboxes with class “checkbox1” }); } else { $(‘.checkbox1’).each(function() { //loop through each checkbox this.checked = false; //deselect all checkboxes with class “checkbox1” }); } }); }); <ul class=”chk-container”> <li><input … Continue reading jQuery Select / Deselect All Checkboxes
Copy and paste this URL into your WordPress site to embed
Copy and paste this code into your site to embed