<!DOCTYPE html> <html> <body> <iframe id="frame"></iframe> <script> var iframeElement = document.querySelector('#frame'); url = window.location.href; iframeElement.src = url.substr(url.indexOf('=') + 1); </script> </body> </html>