The password field (<input type="password">) within your form can be accessed and manipulated using JavaScript via the corresponding Password object. To access a button in JavaScript,
The syntax:
Quote:
document.myform.passwordfield //where myform and passwordfield are names of your form/element.
document.myform.elements[i] //where i is the position of the field within form
|
Events:-
1. onBlur
Description:- Code is executed when the focus is removed from the password field.
2. onFocus
Description:- Code is executed when the focus is set on the password field.
Properties:-
1. disabled
Description:- Boolean value that sets/ returns whether the field is disabled.
2. form
Description:- References the form that contains the password field.
3. name
Description:- Reflects the name of the password field (the name attribute).
4. type
Description:- A property available on all form elements, "type" returns the type of the calling form element, in this case, "password".
5. value
Description:- A read/write string that specifies the value of the password field. Note that due to security reasons, some browsers may not return the actual value of the password when this property is invoked.
Methods:-
1. blur()
Description:- Removes focus away from the password field.
2. focus()
Description:- Sets focus on the password field.
3.select()
Description:- Selects the input area of the password field.