Answers for "use javascript inside 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

run javascript in iframe

let script=document.createElement('script');
script.innerText=`your script`
document.querySelector('iframe').appendChild(script)
Posted by: Guest on March-23-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language