I have created a custom Facebook 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?

|
I have created a custom Facebook 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?
|
||||
|
|
|
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. |
||||
|
|
|
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 :
jQuery code:
|
||||
|
|
|
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? |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|