I have a simple function that shows a row of text on a button click. It works just fine, opening and closing with the button, but I'd like it so clicking anywhere on the page will toggle the box closed. Especially, since there are three other buttons in a vertical row and if the user clicks the second button, to open it's text row, it definitely needs to close the first.
src="https://code.jquery.com/jquery-3.5.0.js"></script>
<script>
$( "#virtual-poss-btn" ).click(function() {
$( "#virtual-poss-row" ).slideToggle( "slow" );
});