1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
(function($) { jQuery( document ).ready(function() { add_target_blank_to_external_links(); }); //////////////////////////////////////////////////////////////////////// // // @function - Adds target _blank to all external links // //////////////////////////////////////////////////////////////////////// function add_target_blank_to_external_links(){ // This is the single line advertised in title ;) $('a[href^="http://"], a[href^="https://"]').not('a[href*="'+location.hostname+'"]').attr('target','_blank'); } })(jQuery); |
AWESOME!
Have been looking for this since forever 🙂