File: default.html

package info (click to toggle)
jqueryui 1.12.1%2Bdfsg-4~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 4,800 kB
  • sloc: php: 584; xml: 104; makefile: 69
file content (58 lines) | stat: -rw-r--r-- 1,466 bytes parent folder | download | duplicates (7)
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
<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>jQuery UI Spinner - Default functionality</title>
	<link rel="stylesheet" href="../../themes/base/all.css">
	<link rel="stylesheet" href="../demos.css">
	<script src="../../external/requirejs/require.js"></script>
	<script src="../bootstrap.js" data-modules="/usr/share/javascript/jquery-mousewheel/jquery.mousewheel.js">
		var spinner = $( "#spinner" ).spinner();

		$( "#disable" ).on( "click", function() {
			if ( spinner.spinner( "option", "disabled" ) ) {
				spinner.spinner( "enable" );
			} else {
				spinner.spinner( "disable" );
			}
		});
		$( "#destroy" ).on( "click", function() {
			if ( spinner.spinner( "instance" ) ) {
				spinner.spinner( "destroy" );
			} else {
				spinner.spinner();
			}
		});
		$( "#getvalue" ).on( "click", function() {
			alert( spinner.spinner( "value" ) );
		});
		$( "#setvalue" ).on( "click", function() {
			spinner.spinner( "value", 5 );
		});

		$( "button" ).button();
	</script>
</head>
<body>

<p>
	<label for="spinner">Select a value:</label>
	<input id="spinner" name="value">
</p>

<p>
	<button id="disable">Toggle disable/enable</button>
	<button id="destroy">Toggle widget</button>
</p>

<p>
	<button id="getvalue">Get value</button>
	<button id="setvalue">Set value to 5</button>
</p>

<div class="demo-description">
<p>Default spinner.</p>
</div>
</body>
</html>