Password.blur() : Password « Form « JavaScript Tutorial






The blur method removes the focus from the password box.

<html>
    <head>
    <title> Example of the blur method of the password object</title>
    </head>
    <body>
    <script language="JavaScript">
    <!--
    function shift(){
         document.form1.pass.blur();
         document.form1.txt.value="Get Focus";
    }
    -->
    </script>
    <form name="form1">
    <input type="PASSWORD" Name="pass" size=10>
    <br>
    <input type="Text" name="txt" size=10>
    <br>
    <input type="BUTTON" value="Show Password" onClick=shift()>
    </form>
    </body>
    </html>








10.10.Password
10.10.1.Password
10.10.2.Password.blur()
10.10.3.Password.defaultValue
10.10.4.Password.focus()
10.10.5.Password.form
10.10.6.Password.handleEvent()
10.10.7.Password.name
10.10.8.Password.onBlur
10.10.9.Password.onFocus
10.10.10.Password.select()
10.10.11.Password.type
10.10.12.Password.value
10.10.13.Compare value in the password fields