Last active
December 15, 2015 08:18
-
-
Save patrickrogan/5229311 to your computer and use it in GitHub Desktop.
This is the Javascript to enable the creation of custom twitter buttons.
This file contains 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
<a href="https://twitter.com/share" class="twitter-share-button tweet" data-text="Formic Co - We're making forms dead simple" data-via="FormicCo" data-hashtags="DeadSimpleForms"> | |
<span class="count">0</span> | |
<span class="message">Tweet</span> | |
</a> |
This file contains 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
<script type="text/javascript">//<![CDATA[ | |
$(window).load(function(){ | |
var API_URL = "http://cdn.api.twitter.com/1/urls/count.json", | |
TWEET_URL = "https://twitter.com/intent/tweet"; | |
$(".tweet").each(function() { | |
var elem = $(this), | |
// Use current page URL as default link | |
url = encodeURIComponent(elem.attr("data-url") || document.location.href), | |
// Use page title as default tweet message | |
text = elem.attr("data-text") || document.title, | |
via = elem.attr("data-via") || "", | |
related = encodeURIComponent(elem.attr("data-related")) || "", | |
hashtags = encodeURIComponent(elem.attr("data-hashtags")) || ""; | |
// Set href to tweet page | |
elem.attr({ | |
href: TWEET_URL + "?hashtags=" + hashtags + "&original_referer=" + | |
encodeURIComponent(document.location.href) + "&related=" + related + | |
"&source=tweetbutton&text=" + text + "&url=" + url + "&via=" + via, | |
target: "_blank" | |
}); | |
// Get count and set it as the inner HTML of .count | |
$.getJSON(API_URL + "?callback=?&url=" + url, function(data) { | |
elem.find(".count").html(data.count); | |
}); | |
}); | |
});//]]> | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment