Simon Weber
Simon Weber
This works for me with jQuery 3.5.1
Had the same problem with `hx-disabled-elt` on the triggering element. Got this tempfix from [here](https://github.com/bigskysoftware/htmx/issues/2295#issue-2126797577): ```html hx-on::after-request="this.classList.remove('htmx-request')" ```
I have the same Problem. Chrome 116
> Out of curiosity are you adding the htmx script in your body tag? I had this problem and moved the script tag to head which resolved the issue. This...
I currently have the same problem. Did you happen to find a workaround for this?
Earliest i can test this would be next week, sorry.
Tested your PR and it worked for my project. Thank you very much.
Any news on this issue? Just ran into it as i was trying to add ci-shield permissions for my module like this: ```php public static function AuthGroups(): array { return...
You basically have to reprocess the nodes that were added via AJAX(infinite scrolling). The node on which your behaviour is placed doesn't get replaced, so you'd have to "reinstall" the...