Javascript examples for DOM:Document scripts
Document scripts Collection [index] - Get the contents of the first <script> element (index 0) in the document:
<!DOCTYPE html> <html> <body> <script> document.write("Hello World!"); </script>//from w ww . j a v a 2 s .c o m <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() { var x = document.scripts[0].text; document.getElementById("demo").innerHTML = x; } </script> </body> </html>