Skip to content

Instantly share code, notes, and snippets.

@webdevs-pro
Created December 1, 2019 23:32
Show Gist options
  • Save webdevs-pro/e516196cb6ae7b7c91948f4d6d7b4739 to your computer and use it in GitHub Desktop.
Save webdevs-pro/e516196cb6ae7b7c91948f4d6d7b4739 to your computer and use it in GitHub Desktop.
Facebook share modal
jQuery(document).ready(function($) {
$('.fb_share a').click(function(e) {
e.preventDefault();
window.open($(this).attr('href'), 'fbShareWindow', 'height=450, width=600, top=' + ($(window).height() / 2 - 275) + ', left=' + ($(window).width() / 2 - 300) + ', toolbar=0, location=0, menubar=0, directories=0, scrollbars=0');
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment