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

select to a new window

Status
Not open for further replies.

bookouri

IS-IT--Management
Feb 23, 2000
1,464
US
I have a select box that lets the user select a url and it will open that url in the current page. How can I have the select open the url in a new window?

<select onChange=&quot;location = this.options this.selectedIndex].value;&quot;>

<option selected >-- Choose One --
<option value=&quot;

thanks
 
<select onChange=&quot;window.open(this.options[this.selectedIndex].value);&quot;>

Rick
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top