mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-28 21:41:40 +00:00
17 lines
516 B
HTML
17 lines
516 B
HTML
<h1>Heartbeat Test</h1>
|
|
<h3>Description</h3>
|
|
<p>This test receives messages from the WebSocket server every second.
|
|
|
|
<h3>Example HTML</h3>
|
|
|
|
<pre class="code">
|
|
<div hx-ext="ws" ws-connect="ws://localhost/heartbeat">
|
|
<div id="idMessage"></div>
|
|
</div>
|
|
</pre>
|
|
|
|
<div class="container" hx-ext="ws" ws-connect="ws://localhost/heartbeat">
|
|
<h3>WebSocket Messages</h3>
|
|
<p>Each message just contains a random number generated by the server</p>
|
|
<div id="idMessage">Waiting...</div>
|
|
</div> |