In web development, taking date input from users commonly occurs. The jQuery Date picker provides an excellent user interface and user experience. It also provides much functionality like start date, end date, format date for user display, and more.
While taking date input sometimes we need to skip some dates or need to force users not to select some specific dates like holidays. Without date picker we need to validate it against user input but date picker provides functionality to disable some dates while taking user input easily.
For example, we are creating HRMS or a school application which has a leave module. So it is normal to take leave on working days only. Users can not apply for leave on holidays or exam days. In this example, we will disable a few dates like holidays from datepicker.
In the above code, we have used libraries like Bootstrap, jquery-ui and jQuery and defined single input with id as datepicker. Then in the document ready method, we initialized jQuery datepicker. Here, we have created an array of holiday dates which contains three dates in august 2022. While initializing the jQuery date picker, we applied beforeShowDay property and logic to disable holiday dates defined in the holiday array.
While someone tries to select a date then it will show our holiday dates disabled and the user can not select it. Below is a simple output image for the above example.
Conclusion
In this article, we have created simple date input and disabled weekends for that input. There are many options or properties which can be useful with datepicker.