HTML Tips & Tricks
How to Open a Link in a New Window
You can open a link in a new window using HTML.
This is a little better than JavaScript as it will work whether the browser has JavaScript enabled or not.
You implement this by adding the text target=”_blank” to your anchor tag that you want to open in the new window.
For example:
<a href="http://www.bestfreetips.co.uk/" target="_blank">Click here to visit Best Free Tips site in a new Browser Window</a>