Answers for "frame set on 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
0

iframe

<iframe src=”url of the web page to embed” />
Posted by: Guest on April-05-2022

Browse Popular Code Answers by Language