Vincent
Vincent
> I see that the maintainers don't want PRs without explicitly asking for them Only for new features @patreeceeo ! Cf the [contribution guidelines](https://github.com/bigskysoftware/htmx/blob/master/CONTRIBUTING.md) > 3. Please do not PR...
Hey, as far as I know this is currently not possible with the `hx-push-url` attribute, but you could achieve what you want here using the [`HX-Push-Url`](https://htmx.org/headers/hx-push-url/) response header Hope it...
Hey @nwalters512 , would you be willing to give a shot to htmx 2 on the [v2.0v2.0](https://github.com/bigskysoftware/htmx/tree/v2.0v2.0) branch, on which we made some work on types? Precisely, we added JSDoc...
The `search` input type is supported [even by IE11](https://caniuse.com/?search=input%20search), why change it to a simple text input here? The `search` event on the other hand [is indeed non standard](https://caniuse.com/?search=search%20event) and...
Resolved in 8c61e71
Considering the following situation: ```html Something ``` With the current `find` keyword, the parent div woud listen for the `input` event on the first of the two text inputs. With...
I like those ideas - I think `closest` should return only one element, as it mirrors [the standard API](https://developer.mozilla.org/fr/docs/Web/API/Element/closest) If we want a multiple retrieval of parent elements, I don't...
Either rename next/previous as you said, but we could also - not rename at all, thus we'd have to wait for htmx 2 to introduce breaking changes (I must admit...
Hey, sorry for the late reply! Does it still happen with the latest state of the [`v2.0v2.0` branch](https://github.com/bigskysoftware/htmx/tree/v2.0v2.0) ?
I personally did the same thing on my fork as I prefer the visual experience of keeping the loading state active, to avoid that very flick you mentioned. I can...