Click here to Skip to main content
15,881,715 members
Articles / Programming Languages / Javascript
Tip/Trick

Changing type of a textbox from text to password using javascript

Rate me:
Please Sign up or sign in to vote.
2.50/5 (2 votes)
21 Jul 2010CPOL 23.8K   1   3
Case may come when your client demand PASSWORD HERE to be displayed in readable format in your textbox for password
JavaScript
<html>
<head>
<title>Type of textbox from text to password</title>
<script type="text/javascript" language="javascript">
function trial()
{
    document.getElementById("txtTempBox").style.display="none";
    document.getElementById("txtPassword").style.display="";
    document.getElementById("txtPassword").focus();
}
</script>
</head>
<body>
<input type="text" id="txtTempBox" name="txtTempBox" value="Password Here" onfocus="trial();"/>
<input type="password" id="txtPassword" name="txtPassword" style="display:none;"/>
</body>
</html>


Note1 : 'type' property of textbox control, if we are trying to set it from 'text' to 'password' on an event like onfocus or onenter,it fails in IE and some other browsers. So this is the only easy method to get the work done.

Note2 : We can use 'display' and 'visibility' property of textbox style to make the textbox hidden. But if we are using 'visibility:hidden' then the textbox will be taking the space though invisible creating design issues..so only way is to go for 'display:none'.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


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

 
GeneralThough SCRIPT DEBUGGING is DISABLED it works.I did test it i... Pin
arunpthampi22-Jul-10 23:06
arunpthampi22-Jul-10 23:06 
GeneralReason for my vote of 1 Rather a temporary solution, nothing... Pin
j03x222-Jul-10 2:57
j03x222-Jul-10 2:57 
GeneralGood one but it will fail if JavaScript is turned off. Pin
Kunal Chowdhury «IN»21-Jul-10 8:07
professionalKunal Chowdhury «IN»21-Jul-10 8:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.