mirror of
https://github.com/bigskysoftware/htmx.git
synced 2026-03-19 09:25:40 +00:00
492 B
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>