Nofollow tag Jquery Add More Domains

577 Views Asked by At

I saw this add nofollow tag but how do i exclude more domains. The script only allows 1 url only. Thanks

jQuery(document).ready(function () {
    jQuery('a[href*="http://"]:not([href*="http://domain.com/"])').attr('rel', 'nofollow');
    jQuery('a[href*="https://"]:not([href*="http://domain.com/"])').attr("target", "_blank");
});
1

There are 1 best solutions below

0
On BEST ANSWER

You can separate attribute selectors in the :not selector with a comma:

jQuery('a[href*="http://"]:not([href*="http://domain.com/"],[href*="http://example.com/"])')
    .attr({ rel: 'nofollow', target: '_blank' });