Created
March 10, 2016 18:17
-
-
Save mahbubme/762594a221e3e527c805 to your computer and use it in GitHub Desktop.
Checked multiple checkbox at a time. ( jQuery dependency )
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
$('#selectAllBoxes').click( function(event) { | |
if( this.checked ) { | |
$('.checkBoxes').each(function() { | |
this.checked = true; | |
}); | |
}else { | |
$('.checkBoxes').each(function() { | |
this.checked = false; | |
}); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
HTML code example
<input id="selectAllBoxes" type="checkbox">
<input class='checkBoxes' type='checkbox' name='checkBoxArray[]' value=' '>
<input class='checkBoxes' type='checkbox' name='checkBoxArray[]' value=' '>
<input class='checkBoxes' type='checkbox' name='checkBoxArray[]' value=' '>
<input class='checkBoxes' type='checkbox' name='checkBoxArray[]' value=' '>
<input class='checkBoxes' type='checkbox' name='checkBoxArray[]' value=' '>