I need to highlight the dates between a start date and an end date, which I should be able to specify. Can anyone help me?
If you are using Keith Wood's datepick you can use the following example taken from here
$(selector).datepick({onDate: highlightDays}); function highlightDays(date) { return {selectable: true, dateClass: 'highlight-custom', title: 'tooltip'}; }