I am trying to use onblur event to close a window. Its working fine in IE, Firefox and safari, but the event does not trigger in chrome. is that a bug in chrome or a mistak
Chrome accepts OnBlur event. what i have experience is... on check or uncheck of checkbox, chrome do not focus on it.
Add attribute
onclick="this.focus()" onblur="yourMethod()"/>
you will see it work fine then.