Tutorials using JS
Problem Statement
hide a paragraph element in the document using JavaScript
Solution
to hide a paragraph element in the document using JavaScript, we can use Element.style.display
property. get the paragraph element, and set its CSS display
property with "none"
paragraphElement.style.display = "none";
Program
in the HTML, we have a Click me
button and a paragraph with id myPara
. when user clicks on the Click me
button, we get the paragraph element by id myPara
and set its CSS display
property with none
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Tutorial</h1>
<button id="myBtn">Click me</button>
<p id="myPara">This is a paragraph.</p>
<script>
document.getElementById("myBtn").addEventListener("click", function() {
//get the paragraph element
const myPara = document.getElementById("myPara");
//hide the paragraph element
myPara.style.display = "none";
});
</script>
</body>
</html>