blob: cd4938f71e36c0f2730804abc91cb897a42ff306 (
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
|
<!doctype html>
<html lang="en">
<head>
<title>Spinner Visual Test Page</title>
<link rel="stylesheet" href="../visual.css" type="text/css" />
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css" title="ui-theme" />
<script type="text/javascript" src="../../../jquery-1.5.1.js"></script>
<script type="text/javascript" src="../../../external/jquery.mousewheel-3.0.4.js"></script>
<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="../../../ui/jquery.ui.button.js"></script>
<script type="text/javascript" src="../../../ui/jquery.ui.spinner.js"></script>
<script type="text/javascript" src="http://jqueryui.com/themeroller/themeswitchertool/"></script>
<script type="text/javascript">
$(function() {
$.fn.themeswitcher && $('<div/>').css({
position: "absolute",
right: 10,
top: 10
}).appendTo(document.body).themeswitcher();
$('#spinner').spinner({
start: function(event, ui) {
console.log(event.type, ui.value, $(this).spinner("value"));
},
spin: function(event, ui) {
console.log(event.type, ui.value, $(this).spinner("value"));
},
stop: function(event) {
console.log(event.type, $(this).spinner("value"));
},
change: function(event) {
console.log(event.type, $(this).spinner("value"));
}
});
});
</script>
</head>
<body>
<p><label for="spinner">Basic with event callbacks:</label> <input id="spinner"></p>
</body>
</html>
|