HTML Compiler Online
Javascript Online Compiler
index.html
Change Theme
Compress code
Format code
Download Code
Clear Code
Copy Code!
RunĀ
ctrl+s or click
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Javascript - document</title> </head> <body> <h2>Document interface represent webpage loaded in browser.</h2> <button onclick="showdocument()">Show rough structure of document on page</button> <p>Press <kbd>F12</kbd> to see <code>document</code> object in console.</p> <script> // looping through all the document properties // and displaying their values console.log(document); function showdocument(){ for (var props in document) { document.write(props + "=" + document[props] + "<br>"); } } </script> </body> </html>
RunĀ
x
x