disable specific dates in specific month of every year jquery datepicker in jquery the date should be from database -
disable specific dates in specific month of every year using datepicker in jquery. date should database.
for example: disable date of auguest 15 th of every year , date auguest-15th getting database formate of string.
for disabling more 1 date years in calendar ,
use:
return [!( (day ==15 && month == 8) ll (day ==2 && month == 10) ll (day ==26 && month == 1) ) , " " ];
Comments
Post a Comment