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
x
27
27
1
<style>
2
.newSyndicationModalContainer {
3
display: none; /* Hidden by default */
4
position: fixed; /* Stay in place */
5
z-index: 9999; /* Sit on top */
6
left: 0;
7
top: 0;
8
width: 100%; /* Full width */
9
height: 100%; /* Full height */
10
overflow: auto; /* Enable scroll if needed */
11
background-color: rgb(0,0,0); /* Fallback color */
12
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
13
}
14
.newSyndicationModalContent {
15
background-color: transparent;
16
margin: auto;
17
width: 100%;
18
height: 100%;
19
}
20
</style>
21
22
<div class="newSyndicationModalContainer">
23
<div class="newSyndicationModalContent">
24
<p>Hello</p><iframe id="syndicationPanelModalIFrame" src="http://sample.com" width="100%" height="100%" style="border: none"></iframe>
25
</div>
26
</div>
27
Current Code
JavaScript
1
10
10
1
<script>
2
const newSyndicationModalContainer = document.querySelector(".newSyndicationModalContainer")
3
const newSyndicationModalContent = document.querySelector(".newSyndicationModalContent")
4
if (newSyndicationModalContainer) {
5
var modal = document.createElement(`<p>Hello</p><iframe id="syndicationPanelModalIFrame" src="http://sample.com" width="100%" height="100%" style="border: none"></iframe>`);
6
newSyndicationModalContainer.appendChild(modal);
7
newSyndicationModalContainer.style.display = 'block';
8
}
9
</script>
10
Advertisement
Answer
Okay, I got it;
Use this code:
JavaScript
1
14
14
1
const newSyndicationModalContainer = document.querySelector(".newSyndicationModalContainer")
2
const newSyndicationModalContent = document.querySelector(".newSyndicationModalContent")
3
if (newSyndicationModalContainer != undefined) {
4
var p = document.createElement('p');
5
p.innerText = "Hello!";
6
var iframe = document.createElement('iframe');
7
iframe.id = "syndicationPanelModalIFrame";
8
iframe.src = "http://sample.com";
9
iframe.width = "100%";
10
iframe.height = "100%";
11
iframe.style.border = "none";
12
newSyndicationModalContent.append(p, iframe);
13
newSyndicationModalContainer.style.display = 'block';
14
}
JavaScript
1
19
19
1
.newSyndicationModalContainer {
2
display: none;
3
position: fixed;
4
z-index: 9999;
5
left: 0;
6
top: 0;
7
width: 100%;
8
height: 100%;
9
overflow: auto;
10
background-color: rgb(0, 0, 0);
11
background-color: rgba(0, 0, 0, 0.4);
12
}
13
14
.newSyndicationModalContent {
15
background-color: transparent;
16
margin: auto;
17
width: 100%;
18
height: 100%;
19
}
JavaScript
1
4
1
<div class="newSyndicationModalContainer">
2
<div class="newSyndicationModalContent">
3
</div>
4
</div>
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
1
6
1
const newSyndicationModalContainer = document.querySelector(".newSyndicationModalContainer")
2
const newSyndicationModalContent = document.querySelector(".newSyndicationModalContent")
3
if (newSyndicationModalContainer != undefined) {
4
newSyndicationModalContent.innerHTML = `<p>Hello</p><iframe src="https://sample.com" id="syndicationPanelModalIFrame" width="100%" height="100% style="border: none;"`;
5
newSyndicationModalContainer.style.display = 'block';
6
}
JavaScript
1
19
19
1
.newSyndicationModalContainer {
2
display: none;
3
position: fixed;
4
z-index: 9999;
5
left: 0;
6
top: 0;
7
width: 100%;
8
height: 100%;
9
overflow: auto;
10
background-color: rgb(0, 0, 0);
11
background-color: rgba(0, 0, 0, 0.4);
12
}
13
14
.newSyndicationModalContent {
15
background-color: transparent;
16
margin: auto;
17
width: 100%;
18
height: 100%;
19
}
JavaScript
1
4
1
<div class="newSyndicationModalContainer">
2
<div class="newSyndicationModalContent">
3
</div>
4
</div>
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
1
4
1
let div = document.createElement("div");
2
div.innerHTML = `<span class="innerSpan" style="border: 5px ridge red" data-blablablah="I-don't-say-bla-bla-blah">Bla Bla Bla Blah</span>`;
3
div.style = "dispaly: grid";
4