I\'m currently using the jQuery datetimepicker add-on from here
It works just about perfectly, but I\'m stumped on how to add a small bit of functionality to it. I c
yes, it extends the JQuery-UI Datepicker which has different callbacks to handle a selection
you can check out the onSelect documentation and use it on your timepicker
$('#example').datetimepicker({ onSelect: function(){ //add 1 hour to start time } });