Languages
[Edit]
EN

JavaScript - access body element

8 points
Created by:
maryam
1181

In this short article, we would like to show how to get <body> element reference in JavaScript.

Quick solution:

var bodyElement = document.body;

Warning: document.body can be null if you access it when body is not ready (e.g. in <head> element).

 

Practical example

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<head>
  <meta charset="utf-8" />
  <title>Page title</title>
</head>
<body>
  <script>
    
    var bodyElement = document.body; // body element reference
    
    console.log(bodyElement.outerHTML);
    
  </script>
</body>
</html>

 

See also

  1. JavaScript - access head element 

Alternative titles

  1. JavaScript - get head element handle
  2. JavaScript - get head element reference
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join