Skip to content

Instantly share code, notes, and snippets.

@fredryk
Last active December 17, 2015 09:28
Show Gist options
  • Save fredryk/5587043 to your computer and use it in GitHub Desktop.
Save fredryk/5587043 to your computer and use it in GitHub Desktop.
Open external links in a new tab.
<script>
jQuery(document).ready(function($) {
jQuery("body a[href^='http://'], a[href^='https://']").attr("target","_blank");
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment