This works, the way I want it: If the <select>
gets changed, then htmx gets triggered.
<script src="https://unpkg.com/[email protected]"></script>
<table>
<tr hx-post="//example.com" hx-trigger="change">
<td>
<select name="runner">
<option value="a">a</option>
<option value="b">b</option>
</select>
</td>
</tr>
</table>
If I use a django-autocomplete-light widget, then it does not work.
I use this version: django-autocomplete-light==3.8.1