1
Is there any way to customize or build the button "Like/Like" (to a page) of Facebook?
I’d like a custom one, because the original doesn’t fit the design of mobile app that I’m developing.
1
Is there any way to customize or build the button "Like/Like" (to a page) of Facebook?
I’d like a custom one, because the original doesn’t fit the design of mobile app that I’m developing.
1
There is a plugin called Fancylike
that should serve the purpose.
Include the plugin:
<script src="jquery.fancylike.js"></script>
Create a container to the button:
<div class="fancylike-fb-like"></div>
Calling the plugin, with automatic URL detection to like(or is current url):
<script type="text/javascript">
$(document).ready(function(){
$(".fancylike-fb-like").fancylike();
});
</script>
Browser other questions tagged facebook-graph-api jquery-mobile
You are not signed in. Login or sign up in order to post.