-
Hi. I have multiple |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hello, check out this JSFiddle for an example implementation. <select name="filter1">
<option value="1">1</option>
<option value="2">2</option>
</select>
<select name="filter2">
<option value="A">A</option>
<option value="B">B</option>
</select>
<div hx-get="/url" hx-include="select" hx-trigger="change from:select">
Content will be swapped here
</div>
Please note that there are several ways of accomplishing the same result, depending on your situation, your constraints, and your preferences
Hope this helps! |
Beta Was this translation helpful? Give feedback.
-
Thank you @Telroshan! The |
Beta Was this translation helpful? Give feedback.
Hello, check out this JSFiddle for an example implementation.
change
event, al…