?
Current Path : /home1/savoy/public_html/savoyglobal.net/cocorico/assets/scripts/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/savoyglobal.net/cocorico/assets/scripts/form-samples.js |
var FormSamples = function () { return { //main function to initiate the module init: function () { // use select2 dropdown instead of chosen as select2 works fine with bootstrap on responsive layouts. $('.select2_category').select2({ placeholder: "Select an option", allowClear: true }); $('.select2_sample1').select2({ placeholder: "Select a State", allowClear: true }); $(".select2_sample2").select2({ placeholder: "Type to select an option", allowClear: true, minimumInputLength: 1, query: function (query) { var data = { results: [] }, i, j, s; for (i = 1; i < 5; i++) { s = ""; for (j = 0; j < i; j++) { s = s + query.term; } data.results.push({ id: query.term + i, text: s }); } query.callback(data); } }); $(".select2_sample3").select2({ tags: ["red", "green", "blue", "yellow", "pink"] }); } }; }();