-
Notifications
You must be signed in to change notification settings - Fork 0
/
tdd.html
32 lines (32 loc) · 916 Bytes
/
tdd.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
<html>
<head>
<script src="lib/jquery.js"></script>
<script src="lib/collections.js"></script>
<script src="lib/tdd.js"></script>
<script>
jQuery(function() {
TDD.init(jQuery('#chooser'), {
'Meat': ['Bratwurst', 'Spam', 'Pancetta', 'Turkey roll',
'Prosciutto'],
'Cheese': ['Ami du Chambertin', 'Epoisse', 'Comte', 'Cheddar',
'Stilton', 'Mozzarella'],
'Ice cream': ['Chocolate', 'Vanilla', 'Strawberry', 'Chocolate',
'Chocolate']
});
});
</script>
</head>
<body>
<form id="chooser">
<p>
Type of food: <select name="type" class="food-type"></select>
</p>
<p>
Foodstuff: <select name="food" class="food" multiple="true"></select>
</p>
<p>
<input type="submit"></input>
</p>
</form>
</body>
</html>