You can run the timeline with the code here , and you can use the date picker and associate it with fullcalendar to create a small calendar on the left. Here's how to implement it ...
$(document).ready(function() { $('#datepicker').datepicker({ inline: true, onSelect: function(dateText, inst) { var d = new Date(dateText); $('#calendar').fullCalendar('gotoDate', d); } }); }
This will force fullCalendar to move on to what was ever selected in the jquery date picker.
Hope this helps!
source share