window.PhotoBooth = window.PhotoBooth || { initWidget: function(id,token) { iframe = document.createElement('iframe'); iframe.setAttribute('src', 'https://app.virtualbooth.me/'); iframe.setAttribute("allow", "camera"); iframe.style.width = "100%"; iframe.style.height = "100%"; iframe.style.border = "none"; document.getElementById(id).appendChild(iframe); } }