Element querySelector() Method - Change the text of the first <p> element in a <div> element: - Javascript DOM

Javascript examples for DOM:Element querySelector

Description

Element querySelector() Method - Change the text of the first <p> element in a <div> element:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
#myDIV {/*  w  w  w  .  jav  a 2 s . c  om*/
    border: 1px solid black;
}
</style>
</head>
<body>

<div id="myDIV">
  <p>This is a p element in div.</p>
  <p>This is also a p element in div.</p>
</div>

<button onclick="myFunction()">Test</button>

<script>
function myFunction() {
    var x = document.getElementById("myDIV");
    x.querySelector("p").innerHTML = "Hello World!";
}
</script>

</body>
</html>

Related Tutorials