Results 222 comments of André

Oh, perhaps `hx-select` on the hx element is more what you need. It would cherry-pick an ID to swap. Then there’s multiselect as extension to extend hx-select's brain mass. And...

I think that’s possible with the HX-Reswap response header then. But I don’t know if you'd like it. The full document will be downloaded and processed. It may look smooth,...

Just to rule something out… could you please move the script node to the head? Btw. you might have checked "disable cache" in the dev console, that’s why it works.

Oh, I can’t remember that fiasko correctly. There was something weird about it. It works with an additional HX-Refresh header set to true, doesn’t it?

Hey, I tried and can't replicate the issue. I tested `htmx.trigger("#todo", "myevent")` and it alerted me. Are you sure you trigger the event on the correct element? Can you post...

I'm curious. Does this happen the same with throttle instead of delay? Throttle sounds like a debounce and should work/feel better for a keyup event where you wouldn’t want a...

That’s the natural event of the form, which is also not handled by HTMX. It is submitting due to event bubbling. The proper way would indeed be to put the...

I don’t think HTMX knows even about that form. It is a pretty strange markup. You are not really using that form but put all what makes a form a...

On the img something like… on input from previous set my @width to event.target's value + 'px' end Writing from mobile on toilette. May be incomplete. I left out the...

You can set it like: set my @width to (value of previous ) + 'px' It’s probably better to assign an ID to the input or closest div and reference...