01.
<script type=
"text/javascript"
>
02.
$(document).ready(
function
() {
03.
$(
"#txtSpinThreshold"
).spinner({
04.
min: 0, max: 999, step: 1
05.
});
06.
$(
"#txtSpinDuration"
).spinner({
07.
min: 0, max: 999, step: 1
08.
});
09.
$(
"#txtSpinReset"
).spinner({
10.
min: 0, max: 999, step: 1
11.
});
12.
13.
});
14.
</script>