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; }); }); ...