JQuery: Redirect all Third Party URLs to New Tab

Redirect all third-party links to a new tab without wasting time by using the below code. jQuery(document).ready(function($) { $("a[href^=http]").each(function(){ // NEW - excluded domains list var excludes = [ 'rapidboostmarketing.com',…

Comments Off on JQuery: Redirect all Third Party URLs to New Tab