Link to home
Start Free TrialLog in
Avatar of Michael
Michael

asked on

I need to fix my Java script to open a new window and if clicked again it brings the existing open window to the front

I need to make my java script and html link open the linked "tom.html" page in a new window. The java script is set to bring an opened "tom.html" window to the front if clicked again. But I can't seem to get the script to open the "tom.html" file into a new window.

I also need to remove the new window's resize, menu, tools, status, scroll of the newly opened "tom.html" window if it is possible to accomplish with thie java script.

Thanks
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
 
	<head>
		<meta http-equiv="content-type" content="text/html;charset=utf-8" />
		<title>ee</title>
		<link href="css/basic.css" type="text/css" rel="stylesheet" media="all" />
	</head>
 
	<body bgcolor="black">
		<p>
			<script>
    function activate(w) {
      win=window.open("tom.html",w); window.resizeTo(294, 104); // get a handler for the window, old or new
      win.focus();           // BRING TO FRONT
    }
    if (window.name=="") window.name="Master"; //name for nameless window
  </script>
			<a href="tom.html" target="child" onclick="activate('child')"><span class="UpperNav">Music by Tom</span></a></p>
	</body>
 
</html>

Open in new window

SOLUTION
Avatar of hielo
hielo
Flag of Wallis and Futuna image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Michael
Michael

ASKER

Thanks for the help!!! The music player pop up window is working great!