i have a timepicker which is shown below
$(".timepicker").timepicker({
showInputs: false,
showMeridian: false
});
I have used class timepicker in one of my textbox,
The actual issue is the textbox is displaying current time . i.e 18:00, but i dont want to display it, How to empty the text box?
Have You tried:
$(".timepicker").timepicker({
setTime: null
});
?