/ Published in: jQuery
The target="blank" attribute is not valid XHTML 1.0 Strict. using jQuery, you can achieve the same functionality without having validation problems.
Expand |
Embed | Plain Text
$("a[@rel~='external']").click( function() { window.open( $(this).attr('href') ); return false; });
You need to login to post a comment.
