Created
January 4, 2018 09:22
-
-
Save ozknozsrt/38cf360fb34b323bc5bf100f437fa79c to your computer and use it in GitHub Desktop.
Share URL Generator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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