Hi all,
I have a popup timer and would like to option of keeping the popup on top of the parent window.
Here is what I have so far.
I get the alert but the popup doesn't stay on top.Code:Two radio buttons <input name="ontop" class="ontop" type="radio" value="y" Onclick="ontop('y')">y <input name="ontop" class="ontop" type="radio" value="n" Onclick="ontop('n')">n The JS function ontop(yn) { document.getElementById("ontop") if (yn == 'y'){ alert ("Focus"); self.focus(); } else{} }
Can anyone help with a solution? This (I hope) has a simple solution.
Thanks.




Bookmarks