Skip to content
Snippets Groups Projects
Commit dda7daaf authored by Nancy Polanyk's avatar Nancy Polanyk
Browse files

Upload New File

parent 7ad373c9
No related merge requests found
<!DOCTYPE html>
<html>
<head>
<title> Plants </title>
</head>
<body>
<h1> Data </h1>
<p id="data"></p>
<script src = "https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
var socket = new WebSocket("ws://localhost:8000);
socket.onmessage = function(event){
var data = event.data;
$("#data").text("Received: " + data);
};
</script>
</body>
</html>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment