document.body
In this chapter you will learn:
document.body
document.body
returns the body element as HTMLBodyElement
<!DOCTYPE HTML> <!--from j av a 2s . com-->
<html>
<body>
<script>
document.writeln(document.body);
</script>
</body>
</html>
Next chapter...
What you will learn in the next chapter:
Home » Javascript Tutorial » Document