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


You need to login to view comments.