js hide an element in the dom code example

Example 1: how to edit the visibiility of an element javscript

const element = document.getElementById("id");	// Get element
element.style.visibility = "hidden";			// Hide element
element.style.visibility = "visible";			// Show element
const visible = element.style.visibility;		// Get visibility

Example 2: javascript hide a div

<div id="main"> 
  <p> Hide/show this div </p>
</div>

('#main').hide(); //to hide

// 2nd way, by injecting css using jquery
$("#main").css("display", "none");

Tags:

Html Example