Skip to content

Instantly share code, notes, and snippets.

@omkz
Forked from josephabrahams/socialSharePopups.js
Created July 20, 2020 14:30
Show Gist options
  • Save omkz/65b40c6381c48393ea0488016d0f99f2 to your computer and use it in GitHub Desktop.
Save omkz/65b40c6381c48393ea0488016d0f99f2 to your computer and use it in GitHub Desktop.
Facebook & Twitter Share Popup Windows
(function($) {
$('.js-share-twitter-link').click(function(e) {
e.preventDefault();
var href = $(this).attr('href');
window.open(href, "Twitter", "height=285,width=550,resizable=1");
});
$('.js-share-facebook-link').click(function(e) {
e.preventDefault();
var href = $(this).attr('href');
window.open(href, "Facebook", "height=269,width=550,resizable=1");
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment