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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
/* ------------------------------------------------------------------------------
*
* # SelectBoxIt selects
*
* Specific JS code additions for form_select_box_it.html page
*
* Version: 1.1
* Latest update: Feb 5, 2016
*
* ---------------------------------------------------------------------------- */
$(function() {
// Basic examples
// ------------------------------
// Basic initialization
$(".selectbox").selectBoxIt({
autoWidth: false
});
// Bootstrap theme support
$('.selectbox-bootstrap').selectBoxIt({
autoWidth: false,
theme: "bootstrap"
});
// Allow copying classes to container
$(".selectbox-container").selectBoxIt({
autoWidth: false,
copyClasses: 'container'
});
// Custom arrow icon
$(".selectbox-custom-icon").selectBoxIt({
autoWidth: false,
// Set a custom down arrow icon by adding new CSS class(s)
downArrowIcon: "icon-three-bars"
});
// jQuery animations
$(".selectbox-animated-jquery").selectBoxIt({
autoWidth: false,
// Uses the jQuery 'slideDown' effect when opening the drop down
showEffect: "slideDown",
// Sets the jQuery 'slideDown' effect speed to 400 milleseconds
showEffectSpeed: 200,
// Uses the jQuery 'slideUp' effect when closing the drop down
hideEffect: "slideUp",
// Sets the jQuery 'slideUp' effect speed to 400 milleseconds
hideEffectSpeed: 200
});
// Hide first option
$(".selectbox-hide-first").selectBoxIt({
autoWidth: false,
showFirstOption: false // Hides the first select box option from appearing when the drop down is opened
});
// Hide current option
$(".selectbox-hide-current").selectBoxIt({
autoWidth: false,
hideCurrent: true // Hides the currently selected option from appearing when the drop down is opened
});
// Trigger native select
$(".selectbox-trigger-native").selectBoxIt({
autoWidth: false,
native: true // Triggers the native select box when a user interacts with the drop down
});
// Custom default text
$(".selectbox-default-text").selectBoxIt({
autoWidth: false,
defaultText: "Sample text here" // Sets default text to appear for the drop down
});
// Aggressive change mode
$(".selectbox-aggressive").selectBoxIt({
autoWidth: false,
aggressiveChange: true // Sets default text to appear for the drop down
});
// Native mousedown mode
$(".selectbox-mousedown").selectBoxIt({
autoWidth: false,
nativeMousedown: true // Sets default text to appear for the drop down
});
// Advanced usage
// ------------------------------
// jQuery deferred object
$(".selectbox-deferred-object").selectBoxIt({
autoWidth: false,
defaultText: "Greg Franko Github Repos",
// Populates the drop down using a jQuery deferred object
populate: function() {
var deferred = $.Deferred(),
arr = [],
x = -1;
$.ajax({
url: 'https://api.github.com/users/gfranko/repos'
}).done(function(data) {
while(++x < data.length) {
arr.push(data[x].name);
}
deferred.resolve(arr);
});
return deferred;
}
});
// Array of objects
$(".selectbox-objects-array").selectBoxIt({
autoWidth: false,
// Populates the drop down using an array of objects
populate: [
{value: "SelectBoxIt is:", text: "SelectBoxIt is:"},
{value: "a jQuery Plugin", text: "a jQuery Plugin"},
{value: "a Select Box Replacement", text: "a Select Box Replacement"},
{value: "a Stateful UI Widget", text: "a Stateful UI Widget"}
]
});
// Array of strings
$(".selectbox-strings-array").selectBoxIt({
autoWidth: false,
// Populates the drop down using an array of strings
populate: [
"SelectBoxIt is:",
"a jQuery Plugin",
"a Select Box Replacement",
"a Stateful UI Widget"
]
});
// Single object
$(".selectbox-single-object").selectBoxIt({
autoWidth: false,
// Populates the drop down using an array of strings
populate: {
value: "SelectBoxIt is:",
text: "SelectBoxIt is:"
}
});
// JSON array
$(".selectbox-json-array").selectBoxIt({
autoWidth: false,
// Populates the drop down using a JSON array
populate: {"data": [
{"text":"SelectBoxIt is:","value":"SelectBoxIt is:"},
{"text":"a jQuery Plugin","value":"a jQuery Plugin"},
{"text":"a Select Box Replacement","value":"a Select Box Replacement"},
{"text":"a Stateful UI Widget","value":"a Stateful UI Widget"}
]}
});
// HTML string
$(".selectbox-html-string").selectBoxIt({
autoWidth: false,
// Populates the drop down using a JSON array
populate: '<option value="SelectBoxIt is:">SelectBoxIt is:</option>' +
'<option value="a jQuery Plugin">a jQuery Plugin</option>' +
'<option value="a Select Box Replacement">a Select Box Replacement</option>' +
'<option value="a Stateful UI Widget">a Stateful UI Widget</option>'
});
// Option manipulations
// ------------------------------
//
// Dynamic options
//
// Add options dynamically
$(".selectbox-dynamic-options").selectBoxIt({
autoWidth: false
});
// Appends a drop down option to your drop down
$(".selectbox-dynamic-options").data("selectBox-selectBoxIt").add({
value: "This is a new option",
text: "This is a new option"
});
//
// Remove first option dynamically
//
// Initialize
$(".selectbox-removing-option").selectBoxIt({
autoWidth: false
});
// Removes the first drop down option from the list
$(".selectbox-removing-option").data("selectBox-selectBoxIt").remove(0);
//
// Remove multiple options dynamically
//
// Initialize
$(".selectbox-removing-options").selectBoxIt({
autoWidth: false
});
// Removes the first and second drop down options from the list
$(".selectbox-removing-options").data("selectBox-selectBoxIt").remove([0,1]);
//
// Remove all options dynamically
//
// Initialize
$(".selectbox-remove-all").selectBoxIt({
autoWidth: false
});
// Removes all of the drop down options from the list
$('#remove-all').on('click', function() {
$(".selectbox-remove-all").data("selectBox-selectBoxIt").remove();
})
// Other additions
// ------------------------------
// Enable popover
$('[data-toggle="popover"').popover();
});