Created
June 6, 2014 00:05
-
-
Save nutsandbolts/1b7b080a4a4185bba23f to your computer and use it in GitHub Desktop.
Footer script to open all comment links in a new tab (goes in Genesis theme settings > footer scripts box)
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" src="http://code.jquery.com/jquery-latest.min.js"></script> | |
<script type="text/javascript"> | |
$(window).ready(function(){ | |
//adds target blank to all comment links | |
$('#comments a').each(function(){ | |
$(this).attr('target','_blank'); | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment