htmx
htmx copied to clipboard
</> htmx - high power tools for HTML
```diff - Github - github + GitHub ```
Please check this: https://unpkg.com/htmx.org/dist/ext/response-targets.js` as mentioned in https://htmx.org/extensions/response-targets/
Adds support for comma separated list of event names to the `HX-Trigger` response header. Currently, to trigger multiple events with that header, you have to use the JSON syntax, even...
It's a pretty common pattern to define trigger events using the `from:body` syntax. The issue: this "body" selector currently results in a call to `document.querySelectorAll` inside [`querySelectorAllExt`](https://github.com/bigskysoftware/htmx/blob/master/src/htmx.js#L591) While this may...
## Summary Even though the semantics of request bodies for GET are undefined, it is legal to set request bodies for them. By default, GET form parameters should be encoded...
Greatly enjoying using htmx! I have an issue with HTML forms. I have multiple form elements that share the same value for `name`. If an ordinary HTML `POST` is done,...
Group the essays by their subject matter, to make them a little easier to peruse.
Using `$watch` with AlpineJS in this manner ends up creating a race condition (which I've observed in live code) where sometimes the templated elements are not yet rendered by the...
When specifying a `hx-trigger` attribute, `getTriggerSpecs` tokenizes & parses the trigger spec string everytime it's called. This isn't an issue for most cases, but it performs poorly when operating on...
Make it possible to use query parameters in DELETE requests via two mechanisms: * Expose this as an option in the `htmx:configRequest` event * Introduce a global config This config...