In Bootstrap (v3) is it possible to have two divs which are simply switchable, so one div is shown by default, and a button toggles between the two, so one div is always shown?
It feels like "Collapse" and/or "Accordion" should be able to do this but...
"Collapse" doesn't allow for parent elements, to switch between the two and...
"Accordion" allows all of the panels to be hidden.
The same thing can be accomplished with a bit of JQuery but I'm wondering if some use of the data-* attributes may allow me to avoid any JS. Also, I want to use standard Bootstrap classes as much as possible.