Wednesday, September 26, 2012

jQuery password selector


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

input[type="password"]


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

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

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

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

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

Search Flipkart Products:
Flipkart.com

No comments: