Jquery Checkbox check all
Html Code
<input type='checkbox' class='checkall' id='check_all_id'>
Jquery
$('#check_all_id').on('click', function(e) {
$('input:checkbox').not(this).prop('checked', this.checked);
});
Tech Programming Ideas is one of the best places on the programming for programmers. Learn coding with Tech Programming Ideas tutorials. We are covered android programming, php, yii2 framework, javascript, mysql, vb.net etc.
No comments:
Post a Comment