jQuery - External Links: aprire tutti i link diversi dal sito con target _blank

Guida  JQuery su come aprire i link diversi  dal sito con target _blank, in automatico:

 
Script:
/* Artigiani Del Web - External Links */
 jQuery("a[href*='http://']:not([href*='"+location.hostname+"']),
[href*='https://']:not([href*='"+location.hostname+"'])")
.attr("target","_blank").attr("title","Opens new window")
.addClass("external");

Commenti