--- layout: demo_layout.njk --- ## A Customized Confirmation UI htmx supports the [`hx-confirm`](/attributes/hx-confirm) attribute to provide a simple mechanism for confirming a user action. This uses the default `confirm()` function in javascript which, while trusty, may not be consistent with your applications UX. In this example we will see how to use [sweetalert2](https://sweetalert2.github.io) and the [`htmx:confirm`](/events#htmx:confirm) event to implement a custom confirmation dialog. ```html ``` We add some hyperscript to invoke Sweet Alert 2 on a click, asking for confirmation. If the user confirms the dialog, we trigger the request by invoking the `issueRequest()` function, which was destructured from the event detail object. Note that we are taking advantage of the fact that hyperscript is [async-transparent](https://hyperscript.org/docs/#async) and automatically resolves the Promise returned by `Swal.fire()`. A VanillaJS implementation is left as an exercise for the reader. :) {% include demo_ui.html.liquid %}