Is there a way to create a Select box where all options can be selected with a single click and then unselected with another single click? The goal is to only allow the user to select one option at a time, rather than multiple options.
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.0/jquery.min.js"></script>
<select>
<option value="all">select all /unselect all</option>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
`