Skip to content
Advertisement

Dynamically Create and Set Nested Div in JavaScript

I would only want to render/create <p>Hello</p><iframe id="syndicationPanelModalIFrame" src="http://sample.com" width="100%" height="100%" style="border: none"> on page load.

I don’t want to declare them already but I want to trigger JS and create them once page loads.

Pls see “Expected Output” below

EXPECTED OUTPUT

JavaScript

Current Code

JavaScript

Advertisement

Answer

Okay, I got it;

Use this code:

JavaScript
JavaScript
JavaScript

Another way of doing it with innerHTML

Although it’s not a good way to do it, I’ll do it for you as you asked:

JavaScript
JavaScript
JavaScript

Regarding the question in the comments

let’s say its not always iframe inside there is always. So I don’t want to declare iframe src = … Can we do it like innerHtml? –

You can always create an element and edit its outerHTML/innerHTML/innerText/etc.

For instance:

JavaScript
Advertisement