const retourlink = new URLSearchParams(window.location.search).get('retourlink'); const customHeight = false; var iframe = document.createElement('iframe'); iframe.src = retourlink ? 'https://acn.cfg.test.mtest.nl/?retourlink=' + retourlink : 'https://acn.cfg.test.mtest.nl/'; iframe.style = 'width: 100%; border: none; display: block;'; var configuratorDiv = document.getElementById('configurator'); if (customHeight && configuratorDiv) { configuratorDiv.style.height = '100%'; iframe.style.height = '100%'; } else { iframe.style.height = '80vh'; } configuratorDiv.appendChild(iframe);