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.

I have created a custom Facebook like button.

Custom Like Button

How do make it that when I click the button, it will trigger the like button provided by Facebook like the one below?

Facebook Like Button

share|improve this question

5 Answers

According to facebook policy Item IV. 4. d.

"You must not obscure or cover elements of our social plugins, such as the Like button or Like box plugin."

You can't change the image directly because it's provided by Facebook.

share|improve this answer

When you create a html element with fb-like class, facebook javascript SDK convert it with a like button when document loaded. You can make a custom element and trigger click event of like button when user click your custom button.

For example :

<input type="button" id="mycustombutton" value="Like">
<div style="display:none" class="fb-like" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false"></div>

jQuery code:

$("#mycustombutton").click(function(){
      $(".fb-like").find("a.connect_widget_like_button").click();
      // You can look elements in facebook like button with firebug or developer tools.
});
share|improve this answer
it doesn't work – Mikhail yesterday

Well, Developer is right, you're not suppose to be able to change the FB buttons.

But... you can use the FB button and lay your own image on top or below the FB button.

Laying your image on top is only possible if you use CSS3 pointer-events, wich will make your image click-through and the click event will work "through" your image and actually click the FB button. This only works in newer browsers (Chrome and Firefox).

An other option is to lay the image behind the FB button and set the FB button's opacity to zero. I have used this several times myself, and with a little digging around in the FB code you can attach hover events and everything else to make it look like a custom button.

Have never spent any time trying to figure out how to make the unlike function of the original button work on a custom button, but it's probably possible.

All my attempts to actually trigger the FB button with javascript or jQuery trigger() have failed, but maybe someone else has figured out how to do it?

share|improve this answer

I think that facebook goes through great lengths to make sure people can't trigger the "Like" button. This is to prevent scripts from automatically clicking the "Like" button when someone visits the site.

You may be able to override the style of it using CSS and have your image show instead.

share|improve this answer

You can overlay your button on top of the Facebook like button and use css to hide the Facebook button. Not sure on the legalities of this however.

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.