Skip to content

Instantly share code, notes, and snippets.

@ozknozsrt
Created January 4, 2018 09:22
Show Gist options
  • Save ozknozsrt/38cf360fb34b323bc5bf100f437fa79c to your computer and use it in GitHub Desktop.
Save ozknozsrt/38cf360fb34b323bc5bf100f437fa79c to your computer and use it in GitHub Desktop.
Share URL Generator
$(function () {
var url = window.location.href;
$('.social-share a.facebook').attr('href', 'https://www.facebook.com/sharer/sharer.php?u=' + url);
$('.social-share a.twitter').attr('href', 'https://twitter.com/home?status=' + url);
//... other share links ...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment