HTMX

HTMX

html
<button
  hx-post="/clicked"
  hx-trigger="click"
  hx-target="#parent-div"
  hx-swap="outerHTML"
>
  Click Me!
</button>

This tells HTMX: "When a user clicks on this button, issue an POST request to '/clicked' and use the content from the response to replace the element with the id parent-div in the ." htmx - Documentation

Backlinks2