early-camera-41285
08/21/2022, 6:14 PMhx-vals attribute on the previous and next button to send along the extra value. https://htmx.org/attributes/hx-vals/
html
<button hx-vals="{goTo: 'next'}">Next</button>
<button hx-vals="{goTo: 'prev'}">Previous</button>
or use hx-include on each button with a hidden input for each
html
<input id="next-input type="hidden" name="goTo" value="next">
<input id="previous-input" type="hidden" name="goTo" value="prev">
<button hx-include="#next-input">Next</button>
<button hx-include="#previous-input">Previous</button>