let pmfErcFrameWrapper = document.getElementById('pmfErcFrame'); const {dataset} = pmfErcFrameWrapper; const termsOfConditionQuery = dataset?.termsOfServiceUrl ? `termsOfServiceUrl=${encodeURIComponent(dataset.termsOfServiceUrl)}` : undefined; const thankYouPageQuery = dataset?.thankYouPageUrl ? `thankYouPageUrl=${encodeURIComponent(dataset.thankYouPageUrl)}` : undefined; let iframe = document.createElement('iframe'); iframe.src = `https://apply.myrmapp.com/erc?mode=iframe&origin=${window.location.href}&${termsOfConditionQuery}&${thankYouPageQuery}`; iframe.width = '100%'; iframe.height = '100%'; iframe.style.border = '0'; iframe.style.borderRadius = '3px'; iframe.name = 'pmfErcFrame'; iframe.allow = 'clipboard-read; clipboard-write' pmfErcFrameWrapper.appendChild(iframe);