htmx icon indicating copy to clipboard operation
htmx copied to clipboard

</> htmx - high power tools for HTML

Results 866 htmx issues
Sort by recently updated
recently updated
newest added

If I create a range slider like so ```html ``` I will see a POST every time the slider is moved (rate limited to 10ms), but not once every 10ms....

I'm unsure if this is a known issue, but `hx-disable` can be bypassed if it is used without HTML sanitization. While the [docs](https://htmx.org/docs/#security) talk about the importance of escaping user...

If I have a form with an ID, I get an "e.id.replace is not a function" error. If I remove the ID, then everything works fine, but unfortunately, we need...

Kind of goes hand in hand with https://github.com/bigskysoftware/htmx/issues/1491 really - the `disable-element` extension for when a request is in flight accepts a CSS selector, but if you used e.g. a...

Use case: multiple actions on your page can swap in a form in place of some view component. Ideally you want clicking on one of them to prevent clicking the...

I was trying to confirm if `hx-vals` can be used for `hx-post` and noticed that * [the documentation of `hx-vals`](https://htmx.org/attributes/hx-vals/) does not mention `hx-post`. All examples use `hx-get`. * [the...

documentation

As discussed in #1469, when using htmx in a module environment, some internal extensions, such as `preload`, do not work properly. This is because htmx initializes itself on DOM ready,...

If the history cache is not empty and the `historyCacheSize` is set to 0, the history cache is not cleared, but still used. This leads to very subtle bugs. https://github.com/bigskysoftware/htmx/blob/7ea35d03c6226aaf278b47d80170132bad9384f0/src/htmx.js#L1945-L1956

Adds additional community links to the footer, and uses icons for them. This is done for compactness, enhanced visual identifiation, and to distinguish from the other footer links that point...

Hello, I'm using Vite as a bundler and I'm unable to make htmx extensions work. If I write: ``` import 'htmx.org'; import 'htmx.org/dist/ext/preload.js'; ``` it compiles correctly but I then...