mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-28 05:21:18 +00:00
2.1 KiB
2.1 KiB
+++ title = "htmx 1.x → htmx 2.x Migration Guide" +++
The purpose of this guide is to provide instructions for migrations from htmx 1.x to htmx 2.x. We place a very high value on backwards compatibility, so in most cases this migrations should require very little, if any, work.
- If you are still using the legacy
hx-ws
andhx-sse
attributes, please upgrade to the extension versions (available in 1.x) - Default Changes
- If you want to retain the 1.0 behavior of "smooth scrolling" by default, revert
htmx.config.scrollBehavior
to'smooth'
- If you want
DELETE
requests to use a form-encoded body rather than parameters, reverthtmx.config.methodsThatUseUrlParams
to["get"]
(it's a little crazy, butDELETE
, according to the spec, should use request parameters.) - If you want to make cross-domain requests with htmx, revert
htmx.config.selfRequestsOnly
tofalse
- If you want to retain the 1.0 behavior of "smooth scrolling" by default, revert
- Convert any
hx-on
attributes to theirhx-on:
equivalent:
becomes:<button hx-get="/info" hx-on="htmx:beforeRequest: alert('Making a request!') htmx:afterRequest: alert('Done making a request!')"> Get Info! </button>
<button hx-get="/info" hx-on:htmx:before-request="alert('Making a request!')" hx-on:htmx:after-request="alert('Done making a request!')"> Get Info! </button> Note that you must use the kebab-case of the event name due to the fact that attributes are case-insensitive in HTML.
- The
htmx.makeFragment()
method now always returns aDocumentFragment
rather than either anElement
orDocumentFragment
- If you are using htmx in a module setting, we now provide module-type specific files for all three of the major
JavaScript module types:
/dist/htmx.esm.js
,/dist/htmx.umd.js
&/dist/htmx.amd.js
- htmx 2.0 offers automatic head merging with boosted links. If you do not want this behavior, set you can set
htmx.config.head.boosted
to"none"
IE is no longer supported in htmx 2.0, but htmx 1.x continues to support IE and will be supported for the foreseeable future.