parentElement and parentNode in Javascript under DOM Manipulation methods

parentElement and parentNode in Javascript under DOM Manipulation methods

<!DOCTYPE html>
<html lang="en" id="hello">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Test Page</title>
  <script src="main.js"></script>
</head>
<body>

<div id="outer">

      <h1 id="selector" style="border: 2px solid dodgerblue; padding : 2px"> RUSTIC TRAVEL JUNKIE</h1>

      <p id="para">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illum ipsam blanditiis voluptatibus et, cumque expedita, quam ea! Dolorem obcaecati, fuga, culpa neque, repellat laudantium libero sed sint veritatis praesentium vitae cumque ratione eveniet optio, aspernatur ab. </p>

      <button id="inner">CLICK ME</button>

</div>
<script>

// var a = document.getElementById('outer').parentElement;
// var a = document.getElementById('outer').parentNode;
var a = document.getElementById('hello').parentElement;
var b = document.getElementById('hello').parentNode;
console.log("Value of A(parentElement) : " + a);
console.log("Value of B(parentNode) : "  + b);

</script>

</body>
</html>


Comments

Popular posts from this blog