Password Field Type Casting

. 5/26/10
  • Agregar a Technorati
  • Agregar a Del.icio.us
  • Agregar a DiggIt!
  • Agregar a Yahoo!
  • Agregar a Google
  • Agregar a Meneame
  • Agregar a Furl
  • Agregar a Reddit
  • Agregar a Magnolia
  • Agregar a Blinklist
  • Agregar a Blogmarks

Password Field Type Casting


HTML


<input type="password" id="pass"/>
<input type="button" value="Show Password" onClick="showpassword();"/>


JavaScript


function showpassword(){
        document.getElementById("pass").type = "text";
    }



Example


Click Here to DEMO

0 comments: