I am using jQuery clockInput: Clock Time Picker
what i want that in some cases i do not need to set time, so in that case i want to disable time selection and set by default time which i set.
Here are the link which i use https://www.jqueryscript.net/time-clock/Clock-Time-Input-Plugin-jQuery-clockInput.html
A simple code for the clock :
$(document).ready(function() {
$("input[type=time]").clockInput(false);
});
How can i do this ?