I am using the below code to showtimepicker
when clicking on an input type text. Is there a way to set a default value
such as 01:00
for the time picker
??
$.plugin($afterSubPageLoad,{
end_time_picker:function()
{
$(function(){$('#actualHours').scroller({preset: 'time',theme: 'wp',display: 'modal',mode: 'mixed',timeFormat:'HH:ii',timeWheels:'HHii'});});
}
});