I want to display only time from jquery datepicker. my current code is
$(\'#field-start_t_a\').datetimepicker({ showDate:false, showSecond: true, t
Just adding a simple solution. By adding only this , you can get a time only date picker
$('YOUR_SELECTOR').datetimepicker({ format: "HH:mm" });
Simple solution, hope it helps.