123456789101112131415 |
- $(document).ready(function() {
- $('a.tweet').click(function(e){
- e.preventDefault();
-
- var loc = $(this).attr('href');
-
- var title = encodeURIComponent($(this).attr('title'));
- 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');
- });
- });
|