Is there anyway to let jquery UI date picker only allow Saturday?

I am using jquery ui datepicker. I want to add some verification so that it allows people to choose Saturdays instead of any date.

I could check after this fact, but thought it would be easier if the datepicker did a preliminary check, including only Saturday dates.

+6
jquery-ui jquery-ui-datepicker
source share
1 answer
$("#test").datepicker( { beforeShowDay: function(date){ if(date.getDay() == 6){ return [true]; } else { return [false]; } } } ); 
+12
source share

All Articles