I'm working on a project that need to handle dates BC (eg 100BC, or 2000BC) as well as 2014AC etc..
In the API documentation of Datepicker, it is stated that minDate and maxDate can be set using javascript Date object (with has min and max of aprox 285,616 years on either side of 1970).
It seems to be impossible to set years in BC or even before 1/1/99.
$("#date").datepicker({
dateFormat: 'dd-mm-yy',
showButtonPanel: true,
changeMonth: true,
changeYear: true,
yearRange: '0:2010',
inline: true });
How can I surpass this limit?