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;
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>
iframe
add a comment |
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>
iframe
add a comment |
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>
iframe
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
iframe
asked Mar 25 at 11:46
Electronic CircuitElectronic Circuit
10111 bronze badges
10111 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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.
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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