Created
September 11, 2013 21:15
-
-
Save longjasonm/6529893 to your computer and use it in GitHub Desktop.
Make all links on a page "nofollow".
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
if ( typeof $jQ == 'undefined' ) { var $jQ = jQuery.noConflict(); } | |
$jQ(document).ready(function() { | |
$jQ('a').attr('rel', 'nofollow'); | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment