1cg
1cg
Looking at the referenced issue, maybe this should be on the extension API and the public API should have something higher level like `reinit()`?
It looks like you have two elements making submissions and having requests in flight at the same time, and as they compete to update one or the other wins. The...
I think the problem here is a subtle one with `changed`, which applies to the `form` rather than the target element in this case. If you remove that, it should...
This is with the `preload` extension? @benpate what do you think, bug or feature? Seems like a rabbit hole...
Seems like the preload requests should include the correct headers so caching works correctly. @benpate please lmk if you want to chat...
https://github.com/bigskysoftware/htmx/blob/e67e5ba41b4de7286adf3b6a6bceb1c0ae94c88b/src/htmx.js#L2071 yeesh :expressionless:
Right now we don't do a great job of detecting changes to htmx. In fact, we prevent any updates after the node is first initialized: https://github.com/bigskysoftware/htmx/blob/3352d5c3e95dad01470e8fc725c61dee1d476593/src/htmx.js#L1327 The "right thing" here...
Agree w/ you ben, no reason to aggressively cache the request URL. But I think the crux here is that the htmx.ajax() function needs more functionality. We need to include...
Sorry, the docs were wrong here and throttle is behaving as designed: the first event fires and then all events are ignored until the throttle expires. Your use case where...
Can you post a screenshot?