-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
59 lines (59 loc) · 2.57 KB
/
index.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>fcbkListSelection</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link type="text/css" rel="stylesheet" href="fcbklistselection.css" />
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="fcbklistselection.min.js"></script>
</head>
<body>
<h1>fcbkListSelection demo</h1>
<form action="test.php" method="post">
<ul id="fcbklist">
<li>
<strong>Manuel Mujica Lainez</strong><br />
<span class="fcbkitem_text">auto complete & pre added values.</span>
<input type="hidden" name="fcbklist_value[]" value="Manuel Mujica Lainez" />
</li>
<li>
<strong>Gustavo Nielsen</strong><br />
<span class="fcbkitem_text">If you have any comments or requests, please post them and</span>
<input type="hidden" name="fcbklist_value[]" value="Gustavo Nielsen" />
</li>
<li>
<strong>Silvina Ocampo</strong><br />
<span class="fcbkitem_text">auto complete & pre added values.</span>
<input type="hidden" name="fcbklist_value[]" value="Silvina Ocampo" checked="checked" />
</li>
<li>
<strong>Antonio Porchia</strong><br />
<span class="fcbkitem_text">auto complete & pre added values. If you</span>
<input type="hidden" name="fcbklist_value[]" value="Antonio Porchia" checked="checked" />
</li>
<li>
<strong>Gustavo Nielsen</strong><br />
<span class="fcbkitem_text">If you have any comments or requests, please post them and</span>
<input type="hidden" name="fcbklist_value[]" value="Gustavo Nielsen" />
</li>
<li>
<strong>Silvina Ocampo</strong><br />
<span class="fcbkitem_text">auto complete & pre added values.</span>
<input type="hidden" name="fcbklist_value[]" value="Silvina Ocampo" />
</li>
<li>
<strong>Antonio Porchia</strong><br />
<span class="fcbkitem_text">auto complete & pre added values. If you</span>
<input type="hidden" name="fcbklist_value[]" value="Antonio Porchia" />
</li>
</ul>
<input type="submit" value="Submit" />
</form>
<script type="text/javascript" language="JavaScript">
$(document).ready(function() {
//id(ul id),width,height(element height),row(elements in row)
$.fcbkListSelection("#fcbklist","400","50","2");
});
</script>
</body>
</html>