SitePoint Sponsor |
|
User Tag List
Results 1 to 2 of 2
Thread: Popunder flicker in IE
-
Oct 21, 2003, 15:31 #1
- Join Date
- Jan 2002
- Location
- Los Angeles
- Posts
- 222
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Popunder flicker in IE
Is there a way to make the window draw under the parent window? Or will it always draw on top then push itself under (or the parent push itself up)? I keep getting a flicker or flash and am trying to eliminate that.
-
Oct 21, 2003, 16:27 #2
- Join Date
- May 2003
- Posts
- 1,843
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
IE - and, I believe, only IE - will allow you to open windows offscreen; you can then move them into view. Try:
x = window.open('...', '...', 'left=2000,....');
setTimeout('x.moveTo(..., ...)', 100);
You can also put the moveTo() in the pop-up itself, probably without a delay. Call it onload. Just a guess, been awhile.::: certified wild guess :::
Bookmarks