-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 892 Bytes
/
Copy pathindex.html
File metadata and controls
21 lines (21 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>jQuery Plugin Factory example – Autocomplete</title>
<link rel="stylesheet" type="text/css" href="styles/jquery-autocomplete.css" />
<script type="text/javascript" src="scripts/jquery.js"></script>
<script type="text/javascript" src="scripts/jquery-plugin-factory.js"></script>
<script type="text/javascript" src="scripts/jquery-valuechange.js"></script>
<script type="text/javascript" src="scripts/jquery-autocomplete.js"></script>
<script type="text/javascript" src="scripts/autocomplete-example.js"></script>
<script type="text/javascript" src="scripts/plugin-template.js"></script>
</head>
<body>
<h1>jQuery Plugin Factory example – Autocomplete</h1>
<form action="" method="post">
<label>City: <input type="text" name="city" id="city" /></label>
<input type="submit" name="send" />
</form>
</body>
</html>