Skip to content

Instantly share code, notes, and snippets.

@yenleidong
yenleidong / gist:be678080078d24bebce2
Created December 11, 2014 17:35
Blogger, Put ALL External To Target_Blank
<!-- ALL External To _Blank, Put on above </head> -->
<script type='text/javascript'>
$(document).ready(function() {
$("a[href^='http://']").each(
function(){
if(this.href.indexOf(location.hostname) == -1) {
$(this).attr('target', '_blank');
}
}
);