Blog Archives

Open a link in a new window in XHTML

XHTML1.1 does not support the target attribute and so my preferred method for opening links in a new window is: [code] $(document).ready(function() { $('a[rel*=external]').click(function(){ window.open($(this).attr('href')); return false; }); }); ...

Tagged with: , ,
Posted in Technology