Changes
Title
unchanged
Yii3 - How to start
Category
unchanged
Tutorials
Yii version
unchanged
3.0
Tags
unchanged
Content
changed
[...]
```
<script src="htmx.min.js"></script>
```
Your action:
```
<?php
declare(strict_types=1);[...]
<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>
```[...]