Wednesday, September 26, 2012

jQuery button selector


The jQuery button selector is used to filter out all the button elements in a page, the syntax for this selector is.

input[type="button"]


In this post we shall see on how to use the jQuery button selector to select all the button elements in a page without specifying the id or name of element explicitly.

The following script lists out all the button elements in the page

    $('input[type="button"]').each(function() {
        alert('Button: ' + $(this).attr('id'));
    });    

The following script lists out all the button elements in the page on click of the btnTypeSelector button.

$('#btnTypeSelector').click(function(event) {
    event.preventDefault();               
    //
    // Button - Type Selector
    $('input[type="button"]').each(function() {
        alert('Button: ' + $(this).attr('id'));

Search Flipkart Products:
Flipkart.com

No comments: