You can open a link in a new window using HTML. This is a little surer than javascript as it will work whether the browser has javascript installed or not. You implement it by adding the text target="_blank" to your anchor tag.
 For example:
 <a href="http://tipsworld4u.blogspot.com/" target="_blank">click here to visit Tips 'n' Tutorials in a new window</a>

Comments