Forum Moderators: open
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>*** Window_A.htm ***</title>
</head>
<body >
Window A <script language="JavaScript" type="text/javascript">
var w_big = window.open("Window_B.htm", "big_window","width=" + (screen.availWidth - 10) + ",height=" + (screen.availHeight - 50) + ",status=yes,resizable=yes,scrollbars=yes");
w_big.moveTo(0,0);
</script>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>*** Window_B.htm ***</title>
</head>
<body>
Window B
</body>
</html>
If I click on Window_A.htm it writes "Window A" OK and then opens Window_B.htm correctly. However Window A is on top rather than Window B.
I use this scheme for a club website. Most users including myself get Window A on top of Window B as required. But several club members get Window A on top of Window B. How do I ensure that Window B is always on top of Window A? Most use XP and IE7 but I think there are a few Vista.
Thanks