How can i send form by type into input using htmx?
I have a search input and sort select. I wrapped it into form. How can i send form by typing into search input (hx-trigger="keyup changed delay:150ms") or selecting another item in select (hx-trigger="changed"). I need to send data from both of this elements. Here is my code: <form hx-get="{% url ‘search-spec’ %}" hx-target="#search-results" hx-trigger="keyup delay:150ms… Read More How can i send form by type into input using htmx?