Answers for "dom js hide element"

4

Javascript getelementbyid hide element

// Toggle between hiding and displaying an element
<div id="myDIV" onclick="javascript:myFunction()">myDiv</div>
<script>
function myFunction() {
  var x = document.getElementById('myDIV');
  if (x.style.display === 'none') {
    x.style.display = 'block';
  } else {
    x.style.display = 'none';
  }
}
</script>
Posted by: Guest on October-29-2021
8

js hide div

//If you have jquery, you can use the following method:
$("#mydiv").hide(); //hides div.
$("#mydiv").show(); //shows div.
//If you don't have jquery...
//search up the following: html how to add jquery
Posted by: Guest on June-22-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language