Add Business Days To The New Date In Jquery
I would like to add the new date with 1 business day. For example if user select any Friday, it should display Monday's date in the second field. Below is the code: Jquery:
Solution 1:
You need to add the following code in your initilization:
beforeShowDay: $.datepicker.noWeekends
Working Fiddle: http://jsfiddle.net/47SeR/4/
Post a Comment for "Add Business Days To The New Date In Jquery"