Vincent
Vincent
From what I see in the sources: https://github.com/bigskysoftware/htmx/blob/e0905ff94a3623f6383278bf2ea740c65b616105/src/htmx.js#L4692-L4694 https://github.com/bigskysoftware/htmx/blob/e0905ff94a3623f6383278bf2ea740c65b616105/src/htmx.js#L4703-L4705 I don't see any reason `HX-Push-Url` would not be applied from the second endpoint's response, however it looks like htmx ignores...
Hey, unfortunately it's indeed a weakness of our extended selectors syntax at the moment. It's only handled if it's the only selector, i.e: - `previous input` will work - But...
Closing this, as multiple extended selectors support was added in #2902, released alongside htmx 2.0.4
We realized this 3 years later, that OOB swap could totally handle nested elements, see #2119 I could have sworn I had changed the multiswap docs along back then to...
Oh indeed, we forgot this one behind when we moved extensions to a [separate repository](https://github.com/bigskysoftware/htmx-extensions) 🤦 Sure, bugfix PR welcome!
See #3052
Hey, it's likely to be an error with your scripting logic, as calling `event.preventDefault` should work just fine, see [this JSFiddle](https://jsfiddle.net/9y3of1mj/1/) for instance. If the checkbox is unticked, I call...
I wonder if we should maybe simply reuse the existing history update events here as well? https://github.com/bigskysoftware/htmx/blob/89b9e2afa5fbc62ab7a22292e84f41d7da25447e/src/htmx.js#L4699C28-L4702 Though now that I look at it, it seems we can't abort the...
Hey, - It may have been an oversight at the time it was written, by someone who maybe was simply not aware of `removeClassFromElement`'s existence. Looking at the code, I...