Getting Started
Core Concepts
Control
Interactivity
Pushing Data
HTMX Extensions
Miscellaneous
Configuration
HTMX Extensions
In htmx 4, extensions self-register on script import — the hx-ext
attribute has been removed. htmgo bundles the built-in extensions automatically
via the /public/htmgo.js script tag.
The following extensions are included in htmgo's bundled script:
To include the htmgo script in your project:
h.Html(
h.Head(
h.Script("/public/htmgo.js"),
),
)
Copy
1h.Html(
2 h.Head(
3 h.Script("/public/htmgo.js"),
4 ),
5)