Viewing 1 replies (of 1 total)
  • Hello,

    Here’s a code that should work for this without using the plugin:

    <iframe id="ibe" src="https://www.testpage.abc/index.php" style="width: 100%"></iframe>
    
    <script>
    (function() {
    var frameBaseSRC = document.getElementById("ibe").src;
    var frameQueryString = document.location.href.split("IDde=")[1];
     if (frameQueryString != undefined) {
      document.getElementById("ibe").src = frameBaseSRC + "?IDde=" + frameQueryString;
     }
    })();
    </script>
Viewing 1 replies (of 1 total)
  • The topic ‘Use URL params for Iframe’ is closed to new replies.