Hi,
I have a code like this: (this is a pop-up)
<body onblur="window.focus();">
<form id="ronny">
<select id="select1" name="select1">
<option> 1b </option>
<option> 1a </option>
</select>
<select id="select2" name="select2">
<option> 2b </option>
<option> 2a </option>
</select>
Now, my problems are:
In FF - when i move to the main window, the onblur event is not fire.
In IE - when i click on the select in order to select an option, the event is fired.
I want the event will fire only when the user select an other window than the pop-up. Is it possible?
I tried also onfocusout
but this is not working in both browsers.
Thank you!