Enter Email and Create Password * Enter Email* Confirm Email* Create Password* Confirm Password By creating an account, you agree to our terms & conditions Did Someone Refer You? Enter Referral ID Below function loadFBjs(delay = 500) { return new Promise((resolve, reject) => { if (window["fbjs"]) { resolve("already load FB"); } let body = document.getElementsByTagName("body")[0] let divFbRoot = document.createElement("div"); divFbRoot.id = 'fb-root'; body.prepend(divFbRoot); setTimeout(function () { (function (d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.async = false; js.src = "//connect.facebook.net/en_US/sdk/xfbml.customerchat.js#version=v15.0&appId=1250335922456348&status=true&cookie=true&xfbml=1&"; fjs.parentNode.insertBefore(js, fjs); js.onload = function () { window["fbjs"] = true; resolve("ok"); }; }(document, 'script', 'facebook-jssdk')); }, delay) }); } Source link