Created
October 27, 2015 09:29
-
-
Save joseadrian/9420b500fbc3b1cb5bef to your computer and use it in GitHub Desktop.
Responsive Facebook Like Box
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script> | |
</head> | |
<body> | |
<div id="container" style="width:100%;"> | |
<div class="fb-like-box" data-href="https://www.facebook.com/adobegocreate" data-width="292" data-show-faces="true" data-stream="true" data-header="true"></div> | |
</div> | |
<div id="fb-root"></div> | |
<script> | |
/* | |
* REMEMBER TO CHANGE TO YOUR APP ID AND CHANGE data-href TO SUIT YOU | |
*/ | |
(function(d, s, id) { | |
var js, fjs = d.getElementsByTagName(s)[0]; | |
if (d.getElementById(id)) return; | |
js = d.createElement(s); js.id = id; | |
js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1&appId=ADD YOUR APP ID HERE"; | |
fjs.parentNode.insertBefore(js, fjs); | |
}(document, 'script', 'facebook-jssdk')); | |
$(window).bind("load resize", function(){ | |
var container_width = $('#container').width(); | |
$('#container').html('<div class="fb-like-box" ' + | |
'data-href="https://www.facebook.com/adobegocreate"' + | |
' data-width="' + container_width + '" data-height="730" data-show-faces="false" ' + | |
'data-stream="true" data-header="true"></div>'); | |
FB.XFBML.parse( ); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
By clicking this button, you start the process of generating your content automatically.