Skip to main content

Posts

Showing posts with the label jQuery UI Datepicker - Disable specific days

jQuery UI Datepicker - Disable specific days

Hello everyone, Today's I am going to share the code-sample for disable specific days of jQuery UI Datepicker .  The example in detail as given below. Date Picker HTML code < input id ="datepickerWithDisabledDate" /> Date Picker JavaScript code sample < script >     // List of days to be disabled as an array.     var disabledDates = [ "10-3-2015" , "10-11-2015" , "10-25-2015" , "12-20-2014" ];     function disableSpecificDates(date) {         var month = date.getMonth();         var day = date.getDate();         var year = date.getFullYear();         // First converted to date to our format date like (mm-dd-yyyy) etc.         //After that we will increment the months count by 1.    ...