Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Html
<script>
jQuery(document).ready(function(){
	jQuery.each(jQuery(".external-link"), function(i, link){
		var href= link.getAttribute('href').attr("target", "_blank";
		if(href.indexOf('mailto:') < 0){
			link.setAttribute('target', '_blank');
		}
	});
});
</script>