Last active
August 29, 2015 14:27
-
-
Save fronteer-kr/a6a2a9a51e6aac122e98 to your computer and use it in GitHub Desktop.
Facebook plugin 연동 Javascript #1
This file contains hidden or 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
<script type="text/javascript"> | |
window.fbAsyncInit = function() { | |
FB.init({ | |
appId : 'YOUR APP ID', | |
xfbml : true, | |
version : 'v2.4' | |
}); | |
}; | |
(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/ko_KR/sdk.js"; | |
fjs.parentNode.insertBefore(js, fjs); | |
}(document, 'script', 'facebook-jssdk) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment