Back to Practical Aspnetcore

All HTTP Verbs supported by HTMX

projects/htmx/all-verbs/README.md

latest336 B
Original Source

All HTTP Verbs supported by HTMX

This example shows all the HTTP Verbs supported by HTMX (doc)

html
<ul>
    <li hx-get="/htmx">GET</li>
    <li hx-post="/htmx">POST</li>
    <li hx-put="/htmx">PUT</li>
    <li hx-patch="/htmx">PATCH</li>
    <li hx-delete="/htmx">DELETE</li>
</ul>