I want login area (in code below) to toggle on login button click. Also, I need login area hidden when clicked anywhere outside of login area, but not on login button.
<button id="loginBtn">Login</button>
<div id="loginArea">
<!-- here is login form -->
</div>
How can I achieve this?