htmx/test/servers/ws/static/ws-heartbeat.html
2021-11-15 10:15:06 -07:00

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">
&lt;div hx-ext="ws" ws-connect="ws://localhost/heartbeat"&gt;
&lt;div id="idMessage"&gt;&lt;/div&gt;
&lt;/div&gt;
</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>