Edit This Code:
See Result »
<
!DOCTYPE
html
>
<
html
>
<
body
>
<
p
>
Hello World!
<
/p
>
<
div
>
<
p
>
The DOM is very useful!
<
/p
>
<
p
>
This example demonstrates the
<
b
>
document.body
<
/b
>
property.
<
/p
>
<
/div
>
<
script
>
alert(document.body.innerHTML);
<
/script
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <body> <p>Hello World!</p> <div> <p>The DOM is very useful!</p> <p>This example demonstrates the <b>document.body</b> property.</p> </div> <script> alert(document.body.innerHTML); </script> </body> </html>
Result:
Privacy Policy