Files
oscarpilot/shell/watcher.html
Your Name 8c60f0956b wip
2024-02-15 23:36:30 -06:00

30 lines
893 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>WebSocket Test</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
// Replace 'ws://localhost/ws' with your WebSocket server address
var ws = new WebSocket('ws://localhost/ws');
ws.onopen = function() {
console.log('WebSocket connection established');
};
ws.onmessage = function(event) {
console.log('Message received: ' + event.data);
};
ws.onclose = function() {
console.log('WebSocket connection closed');
};
});
</script>
</head>
<body>
<h1>WebSocket Test Page</h1>
</body>
</html>