Difference between the visibility property and the display property: - Javascript CSS Style Property

Javascript examples for CSS Style Property:display

Description

Difference between the visibility property and the display property:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<p id="myP1">This is some text.</p>
<p id="myP2">This is some text.</p>

<input type="button" onclick="demoDisplay()" value="Hide text with display property">
<input type="button" onclick="demoVisibility()" value="Hide text with visibility property">

<script>
function demoDisplay() {//from   ww w.j a  va2  s.c o m
    document.getElementById("myP1").style.display = "none";
}

function demoVisibility() {
    document.getElementById("myP2").style.visibility = "hidden";
}
</script>

</body>
</html>

Related Tutorials