forms.js
2.0 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
* Additional function for forms.html
* Written by ThemePixels
* http://themepixels.com/
*
* Copyright (c) 2012 ThemePixels (http://themepixels.com)
*
* Built for Amanda Premium Responsive Admin Template
* http://themeforest.net/category/site-templates/admin-templates
*/
jQuery(document).ready(function(){
///// FORM TRANSFORMATION /////
jQuery('input:checkbox, input:radio, select.uniformselect, input:file').uniform();
///// DUAL BOX /////
var db = jQuery('#dualselect').find('.ds_arrow .arrow'); //get arrows of dual select
var sel1 = jQuery('#dualselect select:first-child'); //get first select element
var sel2 = jQuery('#dualselect select:last-child'); //get second select element
sel2.empty(); //empty it first from dom.
db.click(function(){
var t = (jQuery(this).hasClass('ds_prev'))? 0 : 1; // 0 if arrow prev otherwise arrow next
if(t) {
sel1.find('option').each(function(){
if(jQuery(this).is(':selected')) {
jQuery(this).attr('selected',false);
var op = sel2.find('option:first-child');
sel2.append(jQuery(this));
}
});
} else {
sel2.find('option').each(function(){
if(jQuery(this).is(':selected')) {
jQuery(this).attr('selected',false);
sel1.append(jQuery(this));
}
});
}
});
///// FORM VALIDATION /////
jQuery("#form1").validate({
rules: {
firstname: "required",
lastname: "required",
email: {
required: true,
email: true,
},
location: "required",
selection: "required"
},
messages: {
firstname: "Please enter your first name",
lastname: "Please enter your last name",
email: "Please enter a valid email address",
location: "Please enter your location"
}
});
///// TAG INPUT /////
jQuery('#tags').tagsInput();
///// SPINNER /////
jQuery("#spinner").spinner({min: 0, max: 100, increment: 2});
///// CHARACTER COUNTER /////
jQuery("#textarea2").charCount({
allowed: 120,
warning: 20,
counterText: 'Characters left: '
});
///// SELECT WITH SEARCH /////
jQuery(".chzn-select").chosen();
});