Answers for "get text iframe javascript"

1

javascript search on docuemt for text on iframe

var myIFrame = document.getElementById("myIframe");
var content = myIFrame.contentWindow.document.body.innerHTML;
Posted by: Guest on August-24-2020
1

iframe with html string

<iframe srcdoc="<html><body>Hello, <b>world</b>.</body></html>"></iframe>
Posted by: Guest on August-16-2020

Code answers related to "get text iframe javascript"

Browse Popular Code Answers by Language