onBlur triggers immediately in IE as the page loads!

Hello!

I need to use the onBlue event in order to validate some user entries. All works fine in FF and Chrome, but in IE the event seems to be triggered immediately as the conditional (see the if statement below) in my onBlur function is met, even though there was no user-triggered onblur event for this field.

z.attachEvent(“onBlur”, onBlurFunc);
function onBlurFunc(){//VALIDATION FOR INPUT
if((combotext==‘’)&&‘<$isRequired$>’&&(myForm!=‘QUERYTEXTCOMPONENTS’)){
MY CODE TO HIGHLIGHT THE INPUT FIELDS
}
}
I am trying to highlight the combo input if the input is required and the user tabs out of it without specifying any value.

Thank you for your help!

Hello
Could you provide us completed demo toreproduce this issue locally?
docs.dhtmlx.com/doku.php?id=othe … leted_demo