diff options
-rw-r--r-- | www/content/examples/bulk-update.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/www/content/examples/bulk-update.md b/www/content/examples/bulk-update.md index 972d6372..85710b8e 100644 --- a/www/content/examples/bulk-update.md +++ b/www/content/examples/bulk-update.md @@ -8,7 +8,10 @@ accomplished by putting a form around a table, with checkboxes in the table, and values in the form submission (`POST` request): ```html -<form id="checked-contacts"> +<form id="checked-contacts" + hx-post="/users" + hx-swap="outerHTML settle:3s" + hx-target="#toast"> <table> <thead> <tr> |