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

opening a new window using a form

Status
Not open for further replies.

laki

Programmer
Mar 23, 2002
10
CA
I have a dropdown menu which automatically goes to the url selected. the problem i have is that it does not open a new window, which i want. Can you please help, thanking you in advance.

LAKI
 
if the code was
<a href=&quot;url&quot;>link</a>
change it to
<a href=&quot;url&quot; target=&quot;_new&quot;>link</a>

if the code was
document.location=url;
change it to
window.open(url, title, options)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top