Skip to content

Instantly share code, notes, and snippets.

@l4u
Created July 31, 2013 09:18
Show Gist options
  • Save l4u/6120633 to your computer and use it in GitHub Desktop.
Save l4u/6120633 to your computer and use it in GitHub Desktop.
open external links in a new window coffeescript turbolinks
$(document).on 'page:load', ->
links = document.links
for link in links
if (link.hostname != window.location.hostname)
link.target = '_blank'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment