Open all external links in a new window using Jquery


/ Published in: jQuery
Save to your folder(s)



Copy this code and paste it in your HTML
  1. $("a[href*='http://']:not([href*='"+location.hostname+"'])").click( function() {
  2. window.open( $(this).attr('href') );
  3. return false;
  4. });

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.