occurs when the user leaves an input.
Parameters:
//for radios and checkboxes myForm.attachEvent("onBlur", function(name, value){ //any custom logic here }); //for other controls myForm.attachEvent("onBlur", function(name){ //any custom logic here });
See also: onFocus