forked from markashleybell/mab.jquery.taginput
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtests.html
More file actions
23 lines (23 loc) · 1.19 KB
/
tests.html
File metadata and controls
23 lines (23 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Tests</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" media="all" href="lib/css/qunit-1.14.0.css" />
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture">
<form action="" method="post" id="test-form">
<input type="text" class="tag-input test1 test2" name="test-input-1" id="test-input-1" value="">
<input type="text" class="test3 tag-input" name="test-input-2" id="test-input-2" placeholder="Enter tags" value="cat|dog|catfish|fish">
<input type="text" class="tag-input test4" name="test-input-3" id="test-input-3" placeholder="Enter tags" value="">
</form>
</div>
<script type="text/javascript" src="lib/js/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="lib/js/typeahead.bundle.min.js"></script>
<script type="text/javascript" src="lib/js/qunit-1.14.0.js"></script>
<script type="text/javascript" src="mab-jquery-taginput.js"></script>
<script type="text/javascript" src="tests.js"></script>
</body>
</html>