Opening Links In a New Window
Although I usually hate it, this is the standard html code to open a link in a new window.
Forcing users to open links in new windows is so wrong. However, there are times when it is useful. Here’s how you do it.
Standard Link Code:
<a href="http://www.tech-recipes.com">Tech-Recipes.com</a>
Open Link In New Window Code:
<a href="http://www.tech-recipes.com" target="_blank">Tech-Recipes.com</a>
The addition of the target=”_blank” does the dirty deed.






