Opening Links In a New Window

Contributor Icon Contributed by AlexTheBeast  
Tag Icon Tagged: HTML  

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.

 

5 Comments -


No comments yet.

RSS feed for comments on this post. TrackBack URL

Leave a comment -