window.PhotoBooth = window.PhotoBooth || { initWidget: function(id,token) { var getUrlData = function(url) { var params = {}; var hashes = decodeURIComponent(url .slice(url.indexOf('?') + 1)) .replace(/\+/g, '%20') .split('&'); for (var i = 0; i < hashes.length; i++) { var hash = hashes[i].split('='); params[hash[0]] = hash[1]; } return params; } serverUrl = "https://app.virtualbooth.me"; var src = serverUrl+'/booth/'+ token; iframe = document.createElement("iframe"); iframe.setAttribute("src", src); iframe.setAttribute("allow", "camera"); iframe.style.width = "100%"; iframe.style.height = "100%"; iframe.style.border = "none"; iframe.style.overflow = "auto"; document.getElementById(id).appendChild(iframe); } };