jquery-ui/tests/visual/spinner/spinner.html
2010-10-27 17:47:49 +02:00

36 lines
1.3 KiB
HTML

<!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.4.3.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">
$(function() {
$('#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>