Below is the code for a div element that I want to temporarily hide using JavaScript:
<div id="mydiv" style="position: absolute; top: 60px;
left:5px; right:25px; bottom:10px;">
</div>
After hiding it with display:none in my JS script, I am struggling to find a way to display it again. None of the display attributes seem to work. Any help would be appreciated. Thank you.