Summary
Adding more functionalities to the date display to the reusable calendar. Now you can click on the months or year digits, or you can drag the strips to change the date. (Before, you can only click on the arrows move forward or backward one month at a time.)

This dragging function was made easily possible by the jQuery UI. It takes a lot of the grunt work out of the process.
Notes
The current range is Jan 1000 to Dec 9999. But technically, the calendar doesn’t apply before October 15, 1582, since that’s when the Gregorian calendar was first adopted. So I will add that restriction in the next or upcoming updates.
Date Created
18 August 2009
Help
- Basic jQuery: jquery.js
- Custom jQuery UI script. Includes drag and drop functions: jquery-ui.1.7.2.dragDrop.min.js
[...] isolated the dragging portion of update 3 of the reusable calendar project to show what options under the draggable jQuery UI to [...]