mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-30 06:21:19 +00:00
22 lines
521 B
HTML
22 lines
521 B
HTML
<html>
|
|
<head>
|
|
<script src="../../src/htmx.js"></script>
|
|
<script src="../../src/ext/ws.js"></script>
|
|
<title>WebSockets Test</title>
|
|
</head>
|
|
|
|
<body hx-ext="ws" ws-connect="ws://localhost:1323/echo">
|
|
|
|
<form ws-send="">
|
|
<div>Send Message to Echo Server...</div>
|
|
<div>
|
|
<input type="text" name="message" style="width:500px;" value="This Is The Message" />
|
|
<input type="submit"/>
|
|
</div>
|
|
</form>
|
|
|
|
<br><hr><br>
|
|
<div id="idMessage"></div>
|
|
</body>
|
|
</html>
|