Answers for "hide and show div on button click"

0

hide div on button click javascript

<style>
	function hideDiv(){
		var closedDiv  = document.getElementById("closableDiv");
		closedDiv.style.display = "none";
	}
</style>
<button id="closableDiv" onClick="hideDiv()"> </button>
Posted by: Guest on July-13-2021
1

onclick show div and hide other div

<div id="div1">A DIV element...</div>
<div id="div2">Another DIV element</div>
<div id="div3" hidden>A hidden DIV element</div>
<button onclick="switchHidden()">Click to hide visible DIVs and show hidden ones</button>
<script type="text/javascript">
function switchHidden() {
	document.getElementById("div1").hidden = !document.getElementById("div1").hidden;
	document.getElementById("div2").hidden = !document.getElementById("div2").hidden;
	document.getElementById("div3").hidden = !document.getElementById("div3").hidden;
	// alternatively you could do something like Array.prototype.forEach.call(document.getElementsByTagName("div"), div => div.hidden = !div.hidden);
}
</script>
Posted by: Guest on September-01-2021

Code answers related to "hide and show div on button click"

Code answers related to "Javascript"

Browse Popular Code Answers by Language