RexJacobus
Programmer
Hello,
I have a page with several puzzles. I want the user to be able to click on a puzzle and the solution will come up in a popup. That part works fine. My problem is that if the user clicks on a second solution the first popup goes behind the main screen. I want the popups to remain on top of the main screen until they are closed or minimized by the user.
Here is the code I'm using:
<a href="ViperGrey.html" onclick="window.open('ViperGrey.html','popViper','left=650,top=200,width=580,height=400,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no'); return false">
I am not using a function because each screen has different dimensions.
RexJ
I have a page with several puzzles. I want the user to be able to click on a puzzle and the solution will come up in a popup. That part works fine. My problem is that if the user clicks on a second solution the first popup goes behind the main screen. I want the popups to remain on top of the main screen until they are closed or minimized by the user.
Here is the code I'm using:
<a href="ViperGrey.html" onclick="window.open('ViperGrey.html','popViper','left=650,top=200,width=580,height=400,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no'); return false">
I am not using a function because each screen has different dimensions.
RexJ