Html – Why is my hx-trigger not triggered using from: <css selector>?
I have a button that I want to send two requests to the server when clicking. The setup is like this: <button id="add-item" hx-get="some-url" hx-trigger="click" hx-target="#item-form" hx-swap="beforeend" type="button">Add item</button> <br> <div hx-get="some-other-url" hx-trigger="from: #add-item" hx-swap="beforeend"> </div> I have tried using…