May I know how can I use JQuery UI Datepicker to get the range of the date between StartDate and EndDate?
Example:
Start date: 06-March-2014
End date: 09-March-2014
So, my table should able to display output like below.
- 06-March-2014
- 07-March-2014
- 08-March-2014
- 09-March-2014
Is that possible to do it? Or I should use method like this
var totalDay = endDate - startDate;
for(var i = 0; i < totalDay; i++) {
/* Display table output */
}
If I want to use the method like this, how can I achieve it?
Thank you.