-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhtml5.html
More file actions
34 lines (26 loc) · 810 Bytes
/
Copy pathhtml5.html
File metadata and controls
34 lines (26 loc) · 810 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Find words</title>
<meta charset="UTF-8"/>
<link rel="stylesheet" type="text/css" href="html5.css"/>
<script type="text/javascript" src="jquery-1.7.min.js"></script>
<script type="text/javascript" src="find-words.js"></script>
</head>
<body>
<header>
<h1>word helper</h1>
</header>
<p id="loadDictMsg">
Loading dictionary. Sorry it will take a few seconds.
Once the dictionary is loaded you will be able to input your letters.
</p>
<div id="inputArea" style="display: none;">
letters to search:
<input type="text" id="letters"/>
<input type="submit" onclick = "findWords();"/>
</div>
<div id="jmsg"></div>
<ul id="jwords"></ul>
</body>
</html>