gifted-appointment-5037
09/23/2022, 11:38 AM_="on htmx:afterOnLoad ..."
The input clearing code is
<form
hx-post="/todos"
hx-target="#todo-list"
hx-swap="afterbegin"
_="on htmx:afterOnLoad set #txtTodo.value to ''"
>
<input
class="new-todo"
id="txtTodo"
name="todo"
placeholder="What needs to be done?"
autofocus=""
/>
</form>
and the row deleting code is
<button
class="destroy"
hx-delete="/todos/{{id}}"
_="on htmx:afterOnLoad remove #todo-{{id}}"
></button>
What have I missed? (there's no errors in the console)