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??
<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??