Make tabs open and close independently.
Right now I have three tabs and one of them is always open. I would like for them to be able to all be closed to save space.
I see that there is a script that should be added:
<script>
$(function() {
$( "#tabs" ).tabs({
collapsible: true
});
});
</script>
But I have tried adding it at the bottom of the head section, right after the tabs div, and below the rest of the scripts at the bottom of the page. None of this has worked. Where do I add this code?
Thank you.