aboutsummaryrefslogtreecommitdiffstats
path: root/demos/selectmenu/default.html
blob: cbeb627105417aa378c5a854d4c7f3d1946922d3 (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>jQuery UI Selectmenu - Default functionality</title>
	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
	<script src="../../jquery-1.6.2.js"></script>
	<script src="../../ui/jquery.ui.core.js"></script>
	<script src="../../ui/jquery.ui.widget.js"></script>
	<script src="../../ui/jquery.ui.position.js"></script>
	<script src="../../ui/jquery.ui.button.js"></script>
	<script src="../../ui/jquery.ui.menu.js"></script>
	<script src="../../ui/jquery.ui.selectmenu.js"></script>
	<link rel="stylesheet" href="../demos.css">
	<script>
	$(function() {
		$('select#speedA').selectmenu({
			dropdown: false
		});
		$('select#speedB').selectmenu({
			dropdown: false,			
			wrapperElement: '<div class="overflow"/>',
		});
		$('select#filesC').selectmenu();
	});
	</script>
	<style>
		form { margin: 200px 0 0 0; }
		fieldset { border: 0; }
		select { width: 200px; }
		.overflow ul { height: 200px; overflow: auto; }
	</style>
</head>
<body>
	
<div class="demo">

<form action="#">
	<fieldset>
		<label for="speedA">Select a Speed:</label>
		<select name="speedA" id="speedA">
			<option value="Slower">Slower</option>
			<option value="Slow">Slow</option>
			<option value="Medium" selected="selected">Medium</option>
			<option value="Fast">Fast</option>
			<option value="Faster">Faster</option>
		</select>
		<br />
		<br />
		<br />
		<label for="speedB">Select a Speed:</label>
		<select name="speedB" id="speedB">
			<option value="1">1</option>
			<option value="2" selected="selected">2</option>
			<option value="3">3</option>
			<option value="4">4</option>
			<option value="5">5</option>
			<option value="6">6</option>
			<option value="7">7</option>
			<option value="8">8</option>
			<option value="9">9</option>
			<option value="10">10</option>
			<option value="11">11</option>
			<option value="12">12</option>
			<option value="13">13</option>
			<option value="14">14</option>
			<option value="15">15</option>
			<option value="16">16</option>
			<option value="17">17</option>
			<option value="18">18</option>
			<option value="19">19</option>
		</select>
		<br />
		<br />
		<br />
		<label for="filesC">Select a file:</label>
		<select name="filesC" id="filesC">
			<optgroup label="scripts">
				<option value="jquery">jQuery.js</option>
				<option value="jqueryui">ui.jQuery.js</option>
			</optgroup>
			<optgroup label="Label with space">
				<option value="somefile">Some unknown file</option>
				<option value="someotherfile">Some other file</option>
			</optgroup>
		</select>
	</fieldset>
</form>

</div><!-- End demo -->



<div class="demo-description">
<p>The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are tags for programming languages, give "ja" (for Java or JavaScript) a try.</p>
<p>The datasource is a simple JavaScript array, provided to the widget using the source-option.</p>
</div><!-- End demo-description -->

</body>
</html>