Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>The Document Object</h1>
<h2>The scripts Property</h2>
<script>
document.write("Hello World!");
</script>
<p>return the contents of the script element with id="myScript":</p>
<p id="demo"></p>
<script id="myScript">
let text = document.scripts.namedItem("myScript").text;
document.getElementById("demo").innerHTML = text;
</script>
</body>
<!-- Mirrored from www.mdssup.ma/jsref/tryit.asp?filename=tryjsref_doc_scripts4 by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 05 Sep 2022 15:18:57 GMT -->
</html>