Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to get facebook share button? Now a days they not showing to get code..

share|improve this question

2 Answers

firstly defined some attribute in your tag like this:

> <html
> xmlns="http://www.w3.org/1999/xhtml"
> xmlns:fb="http://www.facebook.com/2008/fbml">

after that use this code:

> <html
> xmlns="http://www.w3.org/1999/xhtml"
>   xmlns:fb="http://www.facebook.com/2008/fbml">
> 
> <head> <script
> src="http://connect.facebook.net/en_US/all.js"></script>
> <script
> src="http://static.ak.fbcdn.net/connect.php/js/FB.Share"
>   type="text/javascript"></script>
> 
> </head>
> 
> <body> <div id="fb-root"></div>
> 
> <a name="fb_share" type="box_count"
>           href="http://www.facebook.com/sharer.php"
> tabindex="-1">Share</a> <script>
> 
> //===========init javascript
> SDK===========================
> 
> FB.init({appId: 'YOUR APP KEY',
> status: true, cookie: true, xfbml:
> true});
> FB.Event.subscribe('auth.sessionChange',
> function(response) {
>     if (response.session) {
>       // A user has logged in, and a new cookie has been saved
>     } else {
>       // The user has logged out, and the cookie has been cleared
>     }   });
> 
> </script>
> 
> 
> </body> </html>

By this you can add share button.

share|improve this answer

try the addthis button. just google for it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.