Oops, I have a script that identifies all external links and forces open in new tab ...
<script>
jQuery(document).ready(function($){
$('a').not('[href*="'+document.domain+'"]').attr('target', '_blank');
$('a').not('[href*="'+document.domain+'"]').attr('rel', 'external nofollow');
});
</script>
But how to make it not force a domain ..., ie .. all domains open in new tab .. less the one of "somesite.com" ?? that is .. only links from that domain will not open in a new tab.
I tried doing this:
<script>
jQuery(document).ready(function($){
$('a').not('[href*="'+document.domain+'"]').attr('target', '_blank');
$('a').not('[href*="'+document.domain+'"]').attr('rel', 'external nofollow');
$('[href*="ads.onlinee.top"]').removeAttr("target");
});
</script>
But the ad links .. (EXTERNAL LINKS BACK IN THE SAME GUIDE)