js show element code example
Example 1: js show element
Check this! https://dev.to/devlorenzo/js-hide-and-show-32og
Example 2: how to hide div in html
document.getElementById('elementName').hide();
Example 3: 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");