Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchat.html
More file actions
Latest commit
41 lines (36 loc) · 1.17 KB
/
Copy pathchat.html
File metadata and controls
41 lines (36 loc) · 1.17 KB
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
38
39
40
41
<htmllang="en">
<head>
<metacharset="utf-8">
<title>The Coded Mind</title>
<metaname="description" content="A portal of web stuff.">
<metaname="author" content="Kaiser">
<linkrel="stylesheet" href="styles.css">
<scriptsrc="kaiser.js"></script>
<scriptsrc="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script>
$(document).keypress(function(e){
if(e.which==13||e.keycode==13||e.code=="Enter"||e.key=="Enter"){
send();
}
});
</script>
</head>
<body>
<header><h2>The Coded Mind::Chat</h2></header>
<section>
<nav>
<ul>
<li><ahref="index.html">Home</a></li>
<li><ahref="about.html">About</a></li>
<li><ahref="https://twitter.com/thecodedmind">Twitter</a></li>
<li><ahref="https://twitter.com/themindofathena">Twitter (Athena)</a></li>
<li><ahref="https://github.com/thecodedmind/">TCM Github</a></li>
<li><ahref="https://github.com/kaiz0r/">My Github</a></li>
</ul>
</nav>
<textareaid="chatbox" disabled=1></textarea><br>
<inputid="chatinput" type="text" placeholder="Message to chat">
<buttontype="button" onclick="send()">Send</button>
</section>
</body>
</html>