Have a mobiscroll instance to show date:
$(document).ready(function () {
$("#date").mobiscroll().date({
theme: 'wp',
mode: 'clickpick',
onChange: function (ins) {
console.log(JSON.stringify(ins));
}
});
});
Currently the datepicker displayed in the format like: dd/mm/yyyy How can swap the order be to see mm/dd/yyyy ?