Click to See Complete Forum and Search --> : window.focus and MM_jumpMenu


sharonj
07-08-2003, 12:05 PM
I created a pop-up window that I want to stay active and on the top level until the user closes the window. So, I have added the code below:
<body onBlur="window.focus()">

This seems to work fine. I also want to have a drop-down (or jumpMenu) in the window. This too works fine in Netscape. However, it doesn't work correctly in IE. It seems like the window.focus is conflicting with the menus ability to stay dropped down long enough to choose an option. Below is the code for the menu. Is there a work around for this?

<select name="menu2" class="mainSmallForm" onChange="MM_jumpMenu('parent',this,0)">
<option selected>Susan's Project</option>
<option>Living room</option>
<option>Kitchen</option>
<option>Hall</option>
<option>Bedroom</option>
<option>Dining Room</option>
<option>Bath</option>
<option>Bonus Room</option>
</select>