Skip to content

Instantly share code, notes, and snippets.

@schmidtsonian
Last active August 29, 2015 13:57
Show Gist options
  • Save schmidtsonian/9894955 to your computer and use it in GitHub Desktop.
Save schmidtsonian/9894955 to your computer and use it in GitHub Desktop.
Open popup to share facebook/twitter
$( '.popup' ).on( "click", function( e ) {
e.preventDefault();
var width = 575,
height = 400,
left = ( window.screen.width / 2 ) - ( ( width / 2 ) + 10 ),
top = ( window.screen.height / 2 ) - (( height / 2 ) + 50 ),
url = this.href,
opts = 'status=1' +
',width=' + width +
',height=' + height +
',top=' + top +
',left=' + left;
window.open( url, 'twitter', opts );
} );
// <a href="http://twitter.com/intent/tweet?text=Rutina%20de%20hombro%20y%20trapecio%2C%20por%20Mauricio%20Garza.&amp;url=http://www.sololosmasfuertes.com/" target="_blank" title="Compartir en Twitter" class="popup"></a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment