Filtered selection buttons

Hi I was wondering if the new animation options would be able to achieve something similar to this:

any support would be greatly appreciated:-)

This would be very tricky to accomplish with Interactions at the moment. We hope to make it possible/easier by supporting nested selectors for click triggers classes and custom triggers.

So hold tight.

Thanks Sergie!! I love the exciting growth of webflow and all it’s new additions!!

It would be very nice if you can make the custom triggers events possible soon. Especially the option to toggle content based on user input. This way we can create better prototypes with webflow.

Jquery example of showing a block in a form only when the user has selected a certain option:

$('#form-select').change(function(){
    if( $(this).val() == "specify" ) {
      $('#collapsible-fieldset').show();
    } else if( $(this).val() != "specify" ) {
      $('#collapsible-fieldset').hide();
    }

 });