Skip to content

Instantly share code, notes, and snippets.

@alassiter
Created August 22, 2012 16:43
Show Gist options
  • Save alassiter/3427328 to your computer and use it in GitHub Desktop.
Save alassiter/3427328 to your computer and use it in GitHub Desktop.
jquery open new window NOT tab in Chrome
$j(function(){
$j('a.new_window').click(function(event){
window.open($j(this).attr('href'), '', "location=yes");
event.preventDefault();
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment