@elisha_langworth
To grab all contents inside an iframe, you can use JavaScript to access the contents of the iframe document and retrieve the HTML content. Here's a step-by-step guide on how to do this:
1
|
var iframe = document.getElementById('your-iframe-id'); |
1
|
var iframeDocument = iframe.contentDocument || iframe.contentWindow.document; |
1
|
var iframeContent = iframeDocument.documentElement.innerHTML; |
Keep in mind that accessing content inside an iframe from a different origin (i.e., a different domain) may require special permissions or may not be allowed due to security restrictions imposed by the browser (same-origin policy).