10 lines
220 B
JavaScript
10 lines
220 B
JavaScript
|
$(function() {
|
||
|
$("#toggleall").click(function() {
|
||
|
var checked_status = this.checked;
|
||
|
jQuery("input[type='checkbox']").each(function() {
|
||
|
this.checked = checked_status;
|
||
|
});
|
||
|
});
|
||
|
|
||
|
});
|