if you have `<input name="q" hx-get="/search">`, h...
# rust-htmx
g
if you have
<input name="q" hx-get="/search">
, htmx will send a request
GET /search?q=...
where
...
is the value entered in the input. basically it will be a query parameter so you handle that in the backend