Could I check my understanding of Htmx parameters?
Reading the docs I note that
...an element that causes a request will include its value if it has one...
So therefore I had expected this...
<button hx-post="serverAction"
hx-target="closest .insert-me"
hx-swap="afterbegin"
value="abc"
class="btn btn-primary btn-sm">
...to send the value "abc" to the server in Form data, but it doesn't?
What I do see is a header hx-active-element-value
containing the "abc" value.
So I'm not stuck, since I can use the header, but I am a little puzzled. What do you think?
ic-push-params