In this post Asp.Net jQuery loop through all checked
Checkboxes in Page, we shall see on how to loop through all the checked checkboxes
in the page using jQuery.
We can loop through all the checkboxes in the page by
filtering the type checkbox in the page elements as follows.
$("input[type=checkbox][checked]").each(function() {
alert($(this).attr('id') +
' => ' + $(this).is(':checked'));
});
To loop through all the checkboxes in the page on the
click event of a button use the following script.
// Loop through all Checked Checkboxes in the page
$('#cmdLoopChecked').click(function(event)
{
event.preventDefault();
$("input[type=checkbox][checked]").each(function() {
alert($(this).attr('id') +
' => ' + $(this).is(':checked'));
});
});
To see a
full example using jQuery and Checkbox refer to the post Asp.Net jQuery checkbox Tutorial.
Related Posts
No comments:
Post a Comment