vote up 0 vote down star

pretty self explanatory...

flag

80% accept rate

2 Answers

vote up 1 vote down

Make your password textbox of type "text":

<input type="text" alt="Enter Password" name="PWD" />

Then use the following script:

$(function() {
   $("input[name=PWD]")
      .focus(function() { $(this).attr("type","password"); })
      .blur(function() { 
          if ($(this).val()) // check if you entered something
             $(this).attr("type","text"); 
       })
      .coolinput();
});

What it does is this: when the focus is received, the textbox is changed to a password box, and when focus is lost, it returns to a normal textbox (so the hint text is readable), unless of course something was entered in the textbox.

I didn't actually test this, but if it doesn't work correctly, at least it will point you in the direction to take.

link|flag
+1 Was going to suggest something similar to this. – micmcg Jun 11 at 0:22
vote up 0 vote down

Maybe you can use jquery impromptu plugin, follow the link for a detailed explanation... in a nutshell, you would be using a form's standard input type password.

Impromptu

Something like this:

var txt = 'Enter your password:<br />
      <input type="password" id="jPassword"
      name="jPassword" value="" />';

function mycallbackform(v,m,f){
    if (v){
      $.prompt('your password is of '+ f.jPassword.length + 'characters');
    } 
}

$.prompt(txt,{
      callback: mycallbackform,
      buttons: { Accept: true, Cancel: false }
});
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.