Hello Jason,
We do have a tab components that can be used for that
In the pagebuilder click on the "+" button on the left, then go to Sections > Tabs
Another option is to code it yourself with a block of jQuery and something very simple like this:
Let's say you have 2 sections, one showing the Monthly prices and the other showing the Annual prices,
first of all edit them to set them ID, (right click > section > edit > identification > set the ID field)
let's set ID "MyFirstSection" for the first section and "MySecondSection" for the second one
then add 2 buttons on your page (Monthly, Yearly)
double click on the first button then go to Action > Javascript and paste this:
$("#MyFirstSection").hide(); $("#MySecondSection").show();then double click on the second button then go to Action > Javascript and paste this:
$("#MyFirstSection").show(); $("#MySecondSection").hide();Done, when you test the page you should be able to alternate between the 2 sections when you press on a button đŸ™‚
Of course you can adapt this to hide/show elements or columns or rows, not only sections