MyBB Community Forums

Full Version: Open All Links to New Tab
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Headerinculde add save

<script type='text/javascript'>
$(document).ready(function() {
$("a[href^='http://']").each(
function(){
if(this.href.indexOf(location.hostname) == -1) {
$(this).attr('target', '_blank');
}
}
);
$("a[href^='https://']").each(
function(){
if(this.href.indexOf(location.hostname) == -1) {
$(this).attr('target', '_blank');
}
}
);
});
</script>

all links will be opened with new tab