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

Textbox to URL 1

Status
Not open for further replies.

Coogan

Programmer
Jun 21, 2004
38
GB
I am using the following code to get a variable from a text box to a url:

<input type="button" onclick="document.location = this.form.url.value;" value="Login">

The problem that I have is that I would like the target link to open in a new window as at the moment it opens up into a frame.

Any ideas??
 
change your button to this:
Code:
<input type="button" onclick="window.open( this.form.url.value);" value="Login">

-kaht

banghead.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top