also you coul parse get params from url by URLSearchParams
myIframeRequest.html?param=val //inside iframe const urlParams = new URLSearchParams(window.location.search); console.log(urlParams.getAll('param'));