Revision #52 has been created by
rackycz on Apr 5, 2026, 9:57:19 AM with the memo:
UI
« previous (#51)
Changes
Title
unchanged
Yii3 - How to start
Category
unchanged
Tutorials
Yii version
unchanged
3.0
Tags
unchanged
Content
changed
[...]
And then a simple HTML
```
<h2>HTMX test</h2>
<div id="htmx">
<p>This is the text to be replaced by "Pjax" in Yii3 (htmx)original text</p>
</div>
<button data-hx-get="/htmx"
data-hx-trigger="click"
data-hx-target="#htmx"
data-hx-select="#id
2"
data-hx-swap="innerHTML">
Click me (and watch the traffic in devtools)
</button>
```[...]