Search code examples
jquerytimepicker

Disable current time in jquery timepicker


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?


Solution

  • Have You tried:

    $(".timepicker").timepicker({
        setTime: null
    }); 
    

    ?