Skip to content

Instantly share code, notes, and snippets.

@celticwebdesign
Created October 25, 2017 14:57
Show Gist options
  • Save celticwebdesign/d739834485b1da423176c98beefc9671 to your computer and use it in GitHub Desktop.
Save celticwebdesign/d739834485b1da423176c98beefc9671 to your computer and use it in GitHub Desktop.
<a class="share_twitter" href="#" data-title="title: URL">T</a>
$('a.share_twitter').click(function(e) {
e.preventDefault();
var $this = $(this);
var this_title = $this.data('title');
var this_image = '';
var winWidth = 520;
var winHeight = 350;
var winTop = (screen.height / 2) - (winHeight / 2);
var winLeft = (screen.width / 2) - (winWidth / 2);
window.open('https://twitter.com/home?status='+this_title,'Twitter','top='+winTop+',left='+winLeft+',toolbar=0,status=0,width='+winWidth+',height='+ winHeight);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment