-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsample.html
More file actions
33 lines (29 loc) · 1.37 KB
/
sample.html
File metadata and controls
33 lines (29 loc) · 1.37 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
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html class="ie6"> <![endif]-->
<!--[if IE 7 ]> <html class="ie7"> <![endif]-->
<!--[if IE 8 ]> <html class="ie8"> <![endif]-->
<!--[if IE 9 ]> <html class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html class=""> <!--<![endif]-->
<head>
<title> Testing Page </title>
<link href="smartMultiSelectBox.css" rel="stylesheet" type="text/css"> </link>
</head>
<body>
<form id="testForm" method="post" action ="www.google.com">
<select class="smsBox" multiple="true" name="testSmsBox" id="testSmsBox">
<option value="Sunny">Sunny in Philly</option>
<option value="Funny">You're not funny</option>
<option value="Munny">It's not about munny</option><option value="Sunny">Sunny in Philly</option>
<option value="Funny1">You're not funny too</option>
<option value="Munny1">It's not about munny too</option><option value="Sunny">Sunny in Philly</option>
<option value="Funny2">You're not funny three</option>
<option value="Munn2">It's not about munny three</option>
</select>
<input type="submit" value="Submit..."></input>
</form>
<script type="text/javascript" src = "jquery-1.7.1.min.js"></script>
<script type="text/javascript" src = "smartMultiSelectBox.js"></script>
<script type="text/javascript" src = "test.js"></script>
</body>
</html>