Thursday, July 5, 2012

Asp.Net jQuery loop through all Checkboxes in Page


In this post Asp.Net jQuery loop through all Checkboxes in Page, we shall see on how to loop through all the 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]").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 Checkboxes in the page
$('#cmdLoop').click(function(event) {
    event.preventDefault();
    $("input[type=checkbox]").each(function() {
        alert($(this).attr('id') + ' => ' + $(this).is(':checked'));
    });
});


Search Flipkart Products:
Flipkart.com

No comments: