| Current Path : /var/www/html/venkat/electiveaug22/ |
| Current File : /var/www/html/venkat/electiveaug22/iframe.html |
<iframe id = "ifram" src="https://project.iiita.ac.in/te/if.html" width="300" height="300"></iframe>
<script>
//const ifram = document.getElementById('ifram');
//const message = ifram.contentDocument.getElementById('hello');
//const message = ifram.contentDocument.getElementById('hello').innerText;
//alert(document.getElementById('ifram').contentWindow.document.getElementById('hello').innerText);
//alert(document.getElementById('ifram').contentWindow.document.getElementById('i').innerText);
const ifram = document.getElementById('ifram');
const source = ifram.contentDocument.getElementById("source");
const textContentOutput = ifram.contentDocument.getElementById("textContentOutput");
const innerTextOutput = ifram.contentDocument.getElementById("innerTextOutput");
textContentOutput.value = source.textContent;
innerTextOutput.value = source.innerText;
</script>