Files
htmx/www/content/examples/dialogs.md
Carson Gross c78ae8a9bf content fixes
2025-10-26 20:55:40 -06:00

492 B

+++ title = "Dialogs" template = "demo.html" +++

Dialogs can be triggered with the hx-confirmattributes. These are triggered by the user interaction that would trigger the AJAX request, but the request is only sent if the dialog is accepted.

<div>
  <button class="btn primary"
          hx-post="/submit"
          hx-confirm="Are you sure?"
          hx-target="#response">
    Prompt Submission
  </button>
  <div id="response"></div>
</div>