How to get the parent node of HTML tag element in JavaScript

2 Answers

0 votes
<!DOCTYPE html>
<html>
  
<head>
<style>
#div-id {
    background-color: cornflowerblue;
    width: 70px;
    height: 20px;
    padding: 10px;
}
</style>
</head>
  
<body>
  
<div id="div-id">div tag</div>

<p id="p-id"></p>
 
<script>
 
var txt = document.getElementById("div-id").parentNode;

document.getElementById("p-id").innerHTML = txt;  

/*
run:
  
[object HTMLBodyElement]
  
*/

</script>
 
</body>
  
</html>

 



answered Jul 10, 2015 by avibootz
edited Jul 10, 2015 by avibootz
0 votes
<!DOCTYPE html>
<html>
  
<head>
<style>
#div-id {
    background-color: cornflowerblue;
    width: 70px;
    height: 20px;
    padding: 10px;
}
</style>
</head>
  
<body>
  
<div id="div-id">div tag</div>

<script>
 
document.getElementById("div-id").parentNode.innerHTML = "text in the body area";

/*
run:
  
you will see "text in the body area" in <body> tag
  
*/

</script>
 
</body>
  
</html>

 



answered Jul 10, 2015 by avibootz

Related questions

1 answer 287 views
2 answers 7,142 views
1 answer 483 views
1 answer 317 views
2 answers 402 views
...