|
This is so odd. On IE on my version 7, although the popup blocker is not turned on, the popups I create are being blocked, they start to come up and then are stopped. But in another version 7 and in version 6, and in FF it works. The first code segment below is my most common code that always used to work on all browsers. The second and third code are others that I tried but do not work on some IE browsers.
Any clue? I am really stumped.
1
<a onClick="MyWindow=window.open('hmvideo. htm','MyWindow1','toolbar=no,location=no,directori
es=no,status=no,menubar=no,scrollbars=no,resizable
=no,width=338,height=310,left=75,top=200'); return false;" href="#"><img src="video.jpg" width="336" height="48" align="middle" border="0"></a
2
<a href="javascript:;" onMouseOver="MM_openBrWindow('hmvideo.htm','trythi sagain','width=338,height=310')"><img src="oooo.jpg" width="21" height="25" border="0"></a>
3
<img src="oooo.jpg" width="21" height="25" border="0" onclick="MM_openBrWindow('hmvideo.htm','trythisone ','width=338,height=310')" />
|