I have a div in my code that is hidden by default. I want to show this div exactly left whenever the user clicks on the show button. Since there are multiple show buttons on my page, I would like to display the div as described above.
<div id="menu" style="display: none;">
<!-- insert div content here -->
</div>
<button id="showBtn">Show</button>