currency-form.js
1.7 KB
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
$(document).ready(function() {
/***************************************/
/* Initiallizing for the plugin */
/***************************************/
$('.currency').autoNumeric('init');
/***************************************/
/* end Initiallizing for the plugin */
/***************************************/
/***************************************/
/* Select currency section */
/***************************************/
$('#input-select-currency').autoNumeric('init');
$('#radio-select-currency').change(function() {
var value = $('#radio-select-currency input:checked').val();
if (value == 'dollar') {
$('#input-select-currency').autoNumeric('update', { aSign: '$ ' });
}
if (value == 'euro') {
$('#input-select-currency').autoNumeric('update', { aSign: '€ ' });
}
if (value == 'pound') {
$('#input-select-currency').autoNumeric('update', { aSign: '£ ' });
}
if (value == 'yen') {
$('#input-select-currency').autoNumeric('update', { aSign: '¥ ' });
}
}).change();
/***************************************/
/* end Select currency section */
/***************************************/
});
$(function() {
// Default
$("#stepper1").stepper({});
// Disable mouse wheel
$("#stepper2").stepper({
allowWheel: false,
UI: false,
arrowStep: 0.1
});
// Value range (min: -10; max: 10)
$("#stepper3").stepper({
limit: [-10, 10],
wheelStep: 0.2,
});
// Limit (min: 5)
$("#stepper4").stepper({
limit: [5, ]
});
});