ok that is because I have the wp-admin behind a password. I will remove it and try again. Thanks!
Thank you guys for this. This is exactly what I needed as well!
I did notice when copy – Paste if the tabs or spaces are not correct in the code it did not work for me…
jQuery(function($){
$("#woensdag").datepicker({
beforeShowDay: function(date){
var day = date.getDay();
//return [day == 3];
return [day != 0 && day != 5 && day != 6];
}});
});
-
This reply was modified 9 years, 6 months ago by ryancooper76.