Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

window.open (question 1) 1

Status
Not open for further replies.

BobMorris

Programmer
Jul 6, 2001
32
US
Hi

I'm new at javascript and want a new window to open when an url is clicked.

--- code example 1

<p align=&quot;JUSTIFY&quot;>
<a href=&quot;Javascript:window.open(' <br>

This pops open another window with nothing in it except &quot;[object]&quot; then opens a second window with the target url displayed correctly.

Why am I getting the first window and how do I make it go away?


Bob Morris
 
Hallo Bob,

you might like to try this

1. first HTML-File:
<!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;>
<html>
<head>
<title>Untitled</title>
<meta name=&quot;author&quot; content=&quot;your-name&quot;>
<script language=&quot;JavaScript&quot; src=&quot;index.js&quot; type=&quot;text/javascript&quot;></script>
</head>
<body onLoad=&quot;main()&quot;>
</body>
</html>

2. the relevant JavaScript file:
function main()
{
newwindow = window.open(&quot;start.html&quot;,&quot;&quot;,&quot;toolbar=no,menubar=no,scrollbars=no,resizable=no,status=no,location=no,directories=no,height=600,width=850&quot;);
}

3. the window that gets opened:
<!doctype html public &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;>
<html>
<head>
<title>SC Wörthsee</title>
<meta name=&quot;author&quot; content=&quot;your-name&quot;>
<script language=&quot;JavaScript&quot; src=&quot;main.js&quot; type=&quot;text/javascript&quot;></script>
</head>
<body bgcolor=&quot;#9F0000&quot; onLoad=&quot;main()&quot;>
</body>
</html>

4. the relevant JavaScript file:
function main()
{
document.write(&quot;Hallo everybody&quot;);
}

Hope this helps
DavidinGermany
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top