Reputation: 1768
Is it possible to change the image of the facebook send button? I want my own image with the same functionality.
Upvotes: 2
Views: 1021
Reputation: 694
You can if you give your link/image an id, and then use jquery/javascript to call the Facebook send dialog when it's clicked.
$(function () {
$("#LINK_ID").click(function() {
FB.ui({
method: 'send',
display: ...,
name: ...,
link: ...,
redirect_uri: ...,
})
};
...
})
Upvotes: 3
Reputation: 3858
No, it's not possible to have that level of customisation on a Social Plugin.
Upvotes: 0