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