Skip to content

Instantly share code, notes, and snippets.

@lancevo
Last active December 31, 2015 18:49
Show Gist options
  • Save lancevo/8029582 to your computer and use it in GitHub Desktop.
Save lancevo/8029582 to your computer and use it in GitHub Desktop.
// social share
$(".social-share").on('click','a', function(e){
var url = $(this).attr('href');
if (!url.match(/^mailto/)) {
e.preventDefault();
window.open(url,"SocialShare","location=no,menu=no,toolbar=no");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment