fires when the user moves the mouse pointer out of the input
name | string | item name |
value | string | item value (for checkboxes and radios only) |
//for radios and checkboxes
myForm.attachEvent("onBlur", function(name, value){
//your code here
});
//for other controls
myForm.attachEvent("onBlur", function(name){
//your code here
});
Back to top