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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Opening Windows

Status
Not open for further replies.

stevenk140

Programmer
Nov 20, 2003
34
CA
I am currently using the code to open a window.

<a href=&quot;javascript:void(0)&quot; onClick=&quot;window.open(link, null, 'menubar=no')&quot;>link</a>

I was hoping that once I clicked a link, it would open a new window. Then if a clicked another link, it would open another new window, instead of replacing the first window with the new page.

Would anyone know how to do this?
 
Try this:

<a href=&quot;javascript:void(0)&quot; onClick=&quot;window.open(link, '_blank', 'menubar=no')&quot;>link</a>

Adam
while(ignorance==true){perpetuate(violence,fear,hatred);life--};
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top