-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (30 loc) · 990 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>Chat test</title>
<link rel="stylesheet" href="css/styles.css" type="text/css" />
</head>
<body>
<div id="msgs"></div>
<form id="chat" action="">
<label for="username">Username:</label>
<input type="text" name="username" id="username" /><br />
<label for="msg">Message:</label>
<input id="msg" type="text" name="message" /><br />
<input type="submit" id="submit" name="submit" value="submit" />
</form>
<!-- REQUIRED -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script type="text/javascript" src="http://localhost:8081/socket.io/socket.io.js"></script>
<!-- END REQUIRED -->
<script type="text/javascript" src="js/socket.client.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#chat').submit(function(e) {
e.preventDefault();
sendMsg();
});
});
</script>
</body>
</html>