Skip to content

Instantly share code, notes, and snippets.

@mosinski
Last active August 29, 2015 14:03
Show Gist options
  • Save mosinski/a92791a64cad28224a61 to your computer and use it in GitHub Desktop.
Save mosinski/a92791a64cad28224a61 to your computer and use it in GitHub Desktop.
custom twitter share button
<a href="http://gpiot.com" title="Expert in Web Design and Online Software Development @guillaumepiot" class="tweet" target="_blank">Tweet this!</a>
<script>
$('a.tweet').click(function(e){
e.preventDefault();
var loc = $(this).attr('href');
var title = escape($(this).attr('title'));
window.open('http://twitter.com/share?url=' + loc + '&text=' + title + '&', 'twitterwindow', 'height=450, width=550, top='+($(window).height()/2 - 225) +', left='+$(window).width()/2 +', toolbar=0, location=0, menubar=0, directories=0, scrollbars=0');
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment