You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
568 B
20 lines
568 B
3 years ago
|
<html>
|
||
|
<head>
|
||
|
<title>Egg Count Editor</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<input type="text" id="amount" value="0" />
|
||
|
<button id="send">
|
||
|
Send
|
||
|
</button>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
const amount = document.querySelector('#amount')
|
||
|
const button = document.querySelector('#send')
|
||
|
const socket = new WebSocket('ws://10.0.1.11:8080')
|
||
|
button.addEventListener('click', () => {
|
||
|
socket.send(amount.value)
|
||
|
})
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|