Hi all, I added a dictionary search box from another site to my website. When you click the submit button it takes you to their site. I know how to make a hyperlink open in a new window. But the dictionary opens when you click the submit button. I don't want it to take the user away from my site when they search for a word in the dictionary. How do I make a new window open when the user clicks on the submit button? Thanks, noelves
http://devhood.com/tutorials/tutorial_details.aspx?tutorial_id=496 http://www.google.co.uk/search?hl=en&q=submit+form+new+window&meta= This should help.
With any form that you add to your site just do this... <form target="_blank"> blah blah </form> When the submit button is hit it will open in a new window. -Jon