Check documentation for the latest version of dhtmlxSuite onBlur DHTMLX Docs

onBlur

fires when the user moves the mouse pointer out of the input

void onBlur(string name,string value);
namestringitem name
valuestringitem value (for checkboxes and radios only)

Example

//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