mysterious-toddler-20573
09/24/2020, 4:07 PMmost-jelly-15242
09/24/2020, 5:32 PMhtml
<button hx-on-click="get /route" hx-on-custom-event="get /update">button</button>
This provides flexibility in terms of assigning any event a specific request method and route.most-jelly-15242
09/24/2020, 5:33 PMhx-on-namespace:event="get /route"
, but it's easy to read and understand.gorgeous-ghost-95789
09/24/2020, 7:46 PMmost-jelly-15242
09/24/2020, 8:12 PMmost-jelly-15242
09/24/2020, 8:14 PMgorgeous-ghost-95789
09/25/2020, 1:37 AMhx-swap
hx-target
and others can all modify the original AJAX request in complicated ways. (I just saw the tip of the iceberg poking around in the SSE stuff)gorgeous-ghost-95789
09/25/2020, 1:40 AMgorgeous-ghost-95789
09/25/2020, 1:41 AMmost-jelly-15242
09/25/2020, 2:38 AMlively-beach-14291
09/25/2020, 2:41 AMlively-beach-14291
09/25/2020, 2:44 AMgorgeous-ghost-95789
09/25/2020, 3:58 AM<div hx-get="refresh-url" hx-trigger="custom:event" hx-target="#idToBeUpdated"></div>
That way, you're not bundling so much stuff into one div, and you can manage that separately from the click event in the div itself. Yes? 🙂gorgeous-ghost-95789
09/25/2020, 4:02 AMlively-beach-14291
09/25/2020, 4:23 AMlively-beach-14291
09/25/2020, 4:23 AMlively-beach-14291
09/25/2020, 4:24 AMlively-beach-14291
09/25/2020, 4:29 AMlively-beach-14291
09/25/2020, 4:31 AMgorgeous-ghost-95789
09/25/2020, 4:43 AMlively-beach-14291
09/25/2020, 4:54 AMgorgeous-ghost-95789
09/25/2020, 4:54 AMgorgeous-ghost-95789
09/25/2020, 4:55 AMgorgeous-ghost-95789
09/25/2020, 4:56 AMlively-beach-14291
09/25/2020, 4:59 AMmost-jelly-15242
09/25/2020, 11:18 AM<div hx-get="refresh-url" hx-trigger="custom:event" hx-target="#idToBeUpdated"></div>
> That way, you're not bundling so much stuff into one div, and you can manage that separately from the click event in the div itself. Yes? 🙂
@User Yes, that could definitely be an approach to consider.mysterious-toddler-20573
09/25/2020, 1:55 PMlively-beach-14291
09/25/2020, 3:22 PMlively-beach-14291
09/25/2020, 3:22 PMlively-beach-14291
09/26/2020, 12:23 AM