I used https://github.com/xdan/datetimepicker. I want to show and enter only time. My code is:
$('#dttf').datetimepicker({
datepicker:false,
step:15,
format: 'H:m'});
It is showed only time from 15 minutes, starting with exact time, e.g. 9:00,9:15,9:30, etc. The problem is when I select time, 9:15 by example, it shows me 9:17, the current time. I want to show what I selected, 9:15. I tried many options, but no one seems to work.