how to hide an element from the dom code example
Example 1: 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");
Example 2: js hide element
Check this! https://dev.to/devlorenzo/js-hide-and-show-32og