Events

Events may be passed through the options (see Options for avaible events) or you can bind to them manually:

var myPicker = $('.selector').intimidatetime();

myPicker.on('intimidatetime:change', function(e, date, inst){
	console.log('Time Changed!');
});

Notice the "intimidatetime:" indicates the namespace for the events, then the event name.