Advertisement
Guest User

Untitled

a guest
May 29th, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. function twt_share(name,link){
  2. var w = 626,
  3. h = 436,
  4. left = (screen.width/2)-(w/2),
  5. top = (screen.height/2)-(h/2),
  6. href = $(this).attr('href'),
  7. title = $(this).data('title');
  8.  
  9. href = "https://twitter.com/intent/tweet?text="+ name +" "+ link;
  10.  
  11. window.open(href, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement