Answers for "javascript create iframe"

7

how to get element in iframe using javascript

const iframe = document.getElementById("myIframe");

const iWindow = iframe.contentWindow;
const iDocument = iWindow.document;

// accessing the element
const element = iDocument.getElementsByTagName("p")[0];
element.style.color = "green";
Posted by: Guest on October-21-2021
13

html iframe example

<iframe src="http://www.codegrepper.com"></iframe>
Posted by: Guest on June-26-2019

Browse Popular Code Answers by Language