Tuesday, November 3, 2009

Popup or popunder

To create popup window:
TheNewWin = window.open('mywin.htm', ...)

To display this popup in front of other windows in the screen:
TheNewWin.focus();

To display popup under all other windows:
TheNewWin.blur();

You might want to consider self.onblur() and opener.onfocus() as well.

No comments:

Post a Comment