Jump to content

Open Offsite links in new window


kareem_elzeiny

Recommended Posts

The target attribute is deprecated in HTML 4.01 but a Transitional DTD will allow you to use it.Just put the target attribute on the links that you want opened in a new window.

Link to comment
Share on other sites

Hmm, you would need a Javascript solution. The disadvantage is that users could have Javascript disabled.The procedure is the following:

  1. Get all the links using document.getElementsByTagName().
  2. Look through the href property of each one to see if the domain matches your site's domain. You can use Javascript String methods for this.
  3. Add the target attribute to the element if the previous condition is true.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...