How make this iframe code work where to set the website url?How do you post to an iframe?How to apply CSS to iframe?Invoking JavaScript code in an iframe from the parent pageMake Iframe to fit 100% of container's remaining heightHow to identify if a webpage is being loaded inside an iframe or directly into the browser window?How to force link from iframe to be opened in the parent windowiframe can't be as wide as its jQuery dialog containerAccess parent URL from iframeMake iframe automatically adjust height according to the contents without using scrollbar?Prevent scaling in x-ms-webview

A player is constantly pestering me about rules, what do I do as a DM?

In native German words, is Q always followed by U, as in English?

does a number that contains all primes less than it exist?

How likely is sample A and sample B is from distribution C?

Was "I have the farts, again" broadcast from the Moon to the whole world?

How to write or read powers (math) by words?

Should I tell my insurance company I have an unsecured loan for my new car?

What happens when your group is victim of a surprise attack but you can't be surprised?

Why does this fireplace work?

Signing using digital signatures?

Does anycast addressing add additional latency in any way?

Do sudoku answers always have a single minimal clue set?

How exactly is a normal force exerted, at the molecular level?

Was touching your nose a greeting in second millenium Mesopotamia?

How hard is it to sell a home which is currently mortgaged?

What shortcut does ⌦ symbol in Camunda macOS app indicate and how to invoke it?

How can I create ribbons like these in Microsoft word 2010?

Confusion about multiple information Sets

Transitive action of a discrete group on a compact space

What speedlites can work with the Canon EOS 4000D's non-standard hotshoe?

Symbol for "not absolutely continuous" in Latex

Compute unstable integral with high precision

What is the line crossing the Pacific Ocean that is shown on maps?

How should I behave to assure my friends that I am not after their money?



How make this iframe code work where to set the website url?


How do you post to an iframe?How to apply CSS to iframe?Invoking JavaScript code in an iframe from the parent pageMake Iframe to fit 100% of container's remaining heightHow to identify if a webpage is being loaded inside an iframe or directly into the browser window?How to force link from iframe to be opened in the parent windowiframe can't be as wide as its jQuery dialog containerAccess parent URL from iframeMake iframe automatically adjust height according to the contents without using scrollbar?Prevent scaling in x-ms-webview






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I found this code from stackoverflow but how can use it - i meant specifically where do i enter the source url on the iframe code in order for it to run? I am completely noob in Javascript so please bear with me. For example lets say i want to iframe source = https://google.com where should i put it?






<script>
(function(d)
var iframe = d.body.appendChild(d.createElement('iframe')),
doc = iframe.contentWindow.document;

// style the iframe with some CSS
iframe.style.cssText = "position:absolute;width:200px;height:100px;left:0px;";

doc.open().write('<body onload="' +
'var d = document;d.getElementsByTagName('head')[0].' +
'appendChild(d.createElement('script')).src' +
'='/path/to/file'">');

doc.close(); //iframe onload event happens

)(document);
</script>












share|improve this question




























    0















    I found this code from stackoverflow but how can use it - i meant specifically where do i enter the source url on the iframe code in order for it to run? I am completely noob in Javascript so please bear with me. For example lets say i want to iframe source = https://google.com where should i put it?






    <script>
    (function(d)
    var iframe = d.body.appendChild(d.createElement('iframe')),
    doc = iframe.contentWindow.document;

    // style the iframe with some CSS
    iframe.style.cssText = "position:absolute;width:200px;height:100px;left:0px;";

    doc.open().write('<body onload="' +
    'var d = document;d.getElementsByTagName('head')[0].' +
    'appendChild(d.createElement('script')).src' +
    '='/path/to/file'">');

    doc.close(); //iframe onload event happens

    )(document);
    </script>












    share|improve this question
























      0












      0








      0








      I found this code from stackoverflow but how can use it - i meant specifically where do i enter the source url on the iframe code in order for it to run? I am completely noob in Javascript so please bear with me. For example lets say i want to iframe source = https://google.com where should i put it?






      <script>
      (function(d)
      var iframe = d.body.appendChild(d.createElement('iframe')),
      doc = iframe.contentWindow.document;

      // style the iframe with some CSS
      iframe.style.cssText = "position:absolute;width:200px;height:100px;left:0px;";

      doc.open().write('<body onload="' +
      'var d = document;d.getElementsByTagName('head')[0].' +
      'appendChild(d.createElement('script')).src' +
      '='/path/to/file'">');

      doc.close(); //iframe onload event happens

      )(document);
      </script>












      share|improve this question














      I found this code from stackoverflow but how can use it - i meant specifically where do i enter the source url on the iframe code in order for it to run? I am completely noob in Javascript so please bear with me. For example lets say i want to iframe source = https://google.com where should i put it?






      <script>
      (function(d)
      var iframe = d.body.appendChild(d.createElement('iframe')),
      doc = iframe.contentWindow.document;

      // style the iframe with some CSS
      iframe.style.cssText = "position:absolute;width:200px;height:100px;left:0px;";

      doc.open().write('<body onload="' +
      'var d = document;d.getElementsByTagName('head')[0].' +
      'appendChild(d.createElement('script')).src' +
      '='/path/to/file'">');

      doc.close(); //iframe onload event happens

      )(document);
      </script>








      <script>
      (function(d)
      var iframe = d.body.appendChild(d.createElement('iframe')),
      doc = iframe.contentWindow.document;

      // style the iframe with some CSS
      iframe.style.cssText = "position:absolute;width:200px;height:100px;left:0px;";

      doc.open().write('<body onload="' +
      'var d = document;d.getElementsByTagName('head')[0].' +
      'appendChild(d.createElement('script')).src' +
      '='/path/to/file'">');

      doc.close(); //iframe onload event happens

      )(document);
      </script>





      <script>
      (function(d)
      var iframe = d.body.appendChild(d.createElement('iframe')),
      doc = iframe.contentWindow.document;

      // style the iframe with some CSS
      iframe.style.cssText = "position:absolute;width:200px;height:100px;left:0px;";

      doc.open().write('<body onload="' +
      'var d = document;d.getElementsByTagName('head')[0].' +
      'appendChild(d.createElement('script')).src' +
      '='/path/to/file'">');

      doc.close(); //iframe onload event happens

      )(document);
      </script>






      iframe






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 25 at 11:46









      Electronic CircuitElectronic Circuit

      10111 bronze badges




      10111 bronze badges






















          1 Answer
          1






          active

          oldest

          votes


















          0














          If you just want to iframe another site into yours you could just do



          <iframe src="https://google.com"></iframe>


          without any javascript.



          Take a look at these docs for more info.






          share|improve this answer























          • Actually I know how to use the simple iframe but I want to use the code as in question

            – Electronic Circuit
            Mar 25 at 16:35













          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55337107%2fhow-make-this-iframe-code-work-where-to-set-the-website-url%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          If you just want to iframe another site into yours you could just do



          <iframe src="https://google.com"></iframe>


          without any javascript.



          Take a look at these docs for more info.






          share|improve this answer























          • Actually I know how to use the simple iframe but I want to use the code as in question

            – Electronic Circuit
            Mar 25 at 16:35















          0














          If you just want to iframe another site into yours you could just do



          <iframe src="https://google.com"></iframe>


          without any javascript.



          Take a look at these docs for more info.






          share|improve this answer























          • Actually I know how to use the simple iframe but I want to use the code as in question

            – Electronic Circuit
            Mar 25 at 16:35













          0












          0








          0







          If you just want to iframe another site into yours you could just do



          <iframe src="https://google.com"></iframe>


          without any javascript.



          Take a look at these docs for more info.






          share|improve this answer













          If you just want to iframe another site into yours you could just do



          <iframe src="https://google.com"></iframe>


          without any javascript.



          Take a look at these docs for more info.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 25 at 13:06









          Nick HuNick Hu

          11 silver badge2 bronze badges




          11 silver badge2 bronze badges












          • Actually I know how to use the simple iframe but I want to use the code as in question

            – Electronic Circuit
            Mar 25 at 16:35

















          • Actually I know how to use the simple iframe but I want to use the code as in question

            – Electronic Circuit
            Mar 25 at 16:35
















          Actually I know how to use the simple iframe but I want to use the code as in question

          – Electronic Circuit
          Mar 25 at 16:35





          Actually I know how to use the simple iframe but I want to use the code as in question

          – Electronic Circuit
          Mar 25 at 16:35

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55337107%2fhow-make-this-iframe-code-work-where-to-set-the-website-url%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript