Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Using jQuery Plugins Introducing jQuery Plugins How to Find Plugins

angel angel
angel angel
6,620 Points

appointments

Hey guys I am looking for a good plugin on j Query of a calendar to choose a date for appointments. Do you guys know of a good one?

1 Answer

Samuel Lesire
Samuel Lesire
10,714 Points

As mentioned in the video, you could take a look at jquery-ui plugins.

DatePicker seems to fit your request: https://jqueryui.com/datepicker/

But you should:

  1. know that jQuery ui comes with it's own "css framework" and it's not easy to work without it, however you can customise it on their website or using a theme (if you're ok with the idea of adding that kind of asset in your app)
  2. create a custom build with only the feature you need, or else you'll have a too large asset for you need

You can find a lot of other solutions on the web, even on jQuery website plugin registry: https://plugins.jquery.com/tag/calendar/

The main advantage, of the jQuery-ui solution, it's well maintained by jQuery core team and if you're new to javaScript it could be a much easier start.