You're trying to make a div slide in or out when buttons are clicked. You've already got the first two buttons working, but need help applying the same effect to the remaining three buttons.
To avoid needing separate interactions for every button, you can use Webflow’s built-in interactions with custom attributes (like data-attributes or Combo Classes).
data-slide-target="panel-1"
, data-slide-target="panel-2"
, etc.id="panel-1"
, id="panel-2"
, etc.Ensure each target div you're showing/hiding is:
Absolute
if overlapping)Display: None
)Use an interaction to show one div while hiding others.
data-slide-target
value with custom jQuery (see below)If you're using jQuery for more dynamic control, make sure to add it properly in your project.
Add this to Page Settings > Footer Code or an Embed block:
<script> $(document).ready(function() { $('[data-slide-target]').on('click', function() { var target = $(this).data('slide-target'); // Hide all panels first $('.slide-panel').slideUp(); // Show the target panel $('#' + target).slideDown(); }); });</script>
Important:
slide-panel
.id
matching the button's data-slide-target
.After setup:
To make all five buttons trigger a sliding div effect:
data-slide-target
attributes to map buttons to divsDisplay: None
initiallyLet me know if you want to stick with Webflow-only interactions or keep using jQuery.