How to hide and show an HTML element with JavaScript

2 Answers

0 votes
<!DOCTYPE html>
<html>
<body>

<p id="pid">Text text text</p>

<input type="button" value="Hide" 
onclick="document.getElementById('pid').style.visibility='hidden'">

<input type="button" value="Show"
onclick="document.getElementById('pid').style.visibility='visible'">

</body>
</html>

 



answered Jan 15, 2019 by avibootz
0 votes
// Show
document.getElementById('id').style.display='block';

// Hide
document.getElementById('id').style.display = 'none';

 



answered Jul 26, 2020 by avibootz

Related questions

1 answer 211 views
1 answer 181 views
1 answer 176 views
1 answer 232 views
1 answer 249 views
...