5

In my django application I have different content across the site. Now I would like to add "Share this to... (Facebook,Twitter,Buzz)" link on each page. But instead of redirecting to a social app page I would like to open popup with (if needed) logging/adding possibility. How to get started ? What steps/operations I need to perform and what ready made applications can I use ? I have already created a twitter app and facebook app and have all the keys.

I mean something like links here http://mashable.com/awards/ (left-side).

sasquatch90
  • 53
  • 1
  • 4

3 Answers3

12

Sharethis: http://sharethis.com/ works well in every instance I've used it.

Andrew Sledge
  • 10,163
  • 2
  • 29
  • 30
5

If you want only specific 'share buttons' or with default style justy type " social_name 'share button' " and you will get the js to include on your site (here are the 3 you mentioned in post):

http://www.facebook.com/share/
http://twitter.com/goodies/tweetbutton
http://www.google.com/buzz/api/admin/configPostWidget

sasklacz
  • 3,610
  • 10
  • 39
  • 58
  • Can you expand on this answer, it is not entirely complete. – Chris Oct 16 '11 at 23:50
  • 1
    this is the new google +1 button http://www.google.com/intl/fr/webmasters/+1/button/index.html?utm_source=b2cp1&utm_medium=link&utm_campaign=p1 – Armance Jul 24 '12 at 16:11
1

If you already have the app written to behave like mashable, one approach is to put the login dialog (if it's needed) in a jQuery dialog. http://jqueryui.com/demos/dialog/

jMyles
  • 11,772
  • 6
  • 42
  • 56