Click here to Skip to main content
15,867,308 members
Articles / Web Development / HTML

jQuery Magic - Creating a Vista Style Password Box

Rate me:
Please Sign up or sign in to vote.
4.33/5 (2 votes)
27 Jul 2009CC (ASA 2.5)2 min read 21.4K   19  
Enclosures and jQuery let you do some pretty cool things - like what? How about creating a Vista like 'Toggle Password Visibility' option, all from a single chained command? Nice!

Introduction

One thing that I've learned I really love in programming is enclosures. I'm amazed that someone, somewhere had the brain power to design something that has so much potential to fail.

What We Want To Create

In a recent web application I was working on, I had to come up with a login screen with the standard username and password fields. I wanted it to be a user friendly as possible since I knew a large variety of users would be accessing this screen. There isn't much you can do about a login form - it's two text fields and a button.

However, if you've ever noticed, in Vista, there are some password fields that have a check box that let you see what is in the field. It's handy when you don't have prying eyes around you or trying to help Grandma enter a password. That seems like it might be handy!

Web Based Password Display

I wanted to have something similar for the web app I was working on, and with some jQuery magic and those loveable enclosures, it was possible with a single chained command.

With A Single jQuery Expression...

JavaScript
$("input[type=password]")
  .each(function(index,input) {
    input = $(input);
    $('<div/>')
      .append(
        $("<input type='checkbox' />")
          .attr("id", ("check_"+index))
          .click(function() {
            var change = $(this).is(":checked") ? "text" : "password";
            var rep = $("<input type='" + change + "' />")
              .attr("id", input.attr("id"))
              .attr("name", input.attr("name"))
              .val(input.val())
              .insertBefore(input);
            input.remove();
            input = rep;
          })
        )
        .append(
          $("<label/>")
            .attr("for", ("check_"+index))
            .text("Show contents of the password box.")
        )
        .insertAfter(input);
      });

The jQuery worked great. Now, when the fields toggle back and forth between text and password, the form will still contain all the information required to postback your information.

You'll notice that the input variable is assigned to each time the click is handled, overwriting the previous value all the while updating for the new value... JavaScript designers, wherever you are, simply amazing!

...But Don't Do Too Much...

I know that quite a few people are against long jQuery commands, and I agree that readability comes before all else (since we write code for human eyes, not the computer). But, there is a certain satisfaction in being able to use the magic of enclosures to cram everything you need into a single jQuery command. This code can be dropped into a page and all the work is done.

In any case, I don't advocate doing this with all your code, but it is a good exercise in the power of enclosures to see what you can build with a single chained jQuery command.

License

This article, along with any associated source code and files, is licensed under The Creative Commons Attribution-ShareAlike 2.5 License


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --