jquery - How to set default time in Mobiscroll? -
jquery - How to set default time in Mobiscroll? -
the main problem project bit old , can't update mobiscroll
, don’t know current version of it... code looks this:
jquery('#select-time').mobiscroll().time({ 'timeformat': 'hh:ii:ss', 'timewheels': 'hhiiss', });
i need set time 00:00:00
you can utilize setdate function passing arbitrary date , 00:00:00 time
$('#demo').mobiscroll().time({ timeformat: 'hh:ii:ss', timewheels: 'hhiiss' }); $('#demo').mobiscroll('setdate', new date(2015, 0, 0, 0, 0, 0, 0), true);
jquery mobiscroll
Comments
Post a Comment