Alpine AJAX

1 min read Original article ↗

Radio Controlled HTML Elements

Woman holding an old-fashioned remote with an antenna

A demonstration

Alpine AJAX is an Alpine.js plugin that enables your HTML elements to request remote content from your server. Use it to build straight-forward, robust, interactive websites.

<form x-target="songs" action="/songs">
<input name="search" @input.debounce="$el.form.requestSubmit()">
</form>

<ul id="songs"></ul>

Check the Server Requests to see our server in action!