Skip to content

Instantly share code, notes, and snippets.

@labsecrets
Created September 15, 2011 02:57
Show Gist options
  • Save labsecrets/1218413 to your computer and use it in GitHub Desktop.
Save labsecrets/1218413 to your computer and use it in GitHub Desktop.
SGV2 - Open external link in new window
<!-- Open External Link in new window -->
<script type='text/javascript'>
//<![CDATA[
window.onload = function () {
var links = document.getElementById('main-nav-http://labsecrets.com').getElementsByTagName('a');
for (var i = 0; i < links.length; i++) {
links[i].setAttribute('target', '_blank');
}
}
//]]>
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment