JS hide code example
Example 1: javascript hide div
<script>
document.getElementById("id").style.display = "none";
document.getElementById("id").style.display = "block";
document.getElementById("id").style.display = "";
</script>
<html>
<div id="id" style="display:none">
<div id="id" style="display:block">
</html>
<script>
$("#id").hide();
$("#id").show();
</script>
Example 2: javascript hide element by class
document.getElementsByClassName('class_name')[0].style.visibility='hidden';
Example 3: hide element js
function showStuff(id, text, btn) {
document.getElementById(id).style.display = 'block';
document.getElementById(text).style.display = 'none';
btn.style.display = 'none';
}
Example 4: js hide element
Check this! https://dev.to/devlorenzo/js-hide-and-show-32og