I have tried several of these code examples here, none seem to be working for me on the latest version of WordPress and the latest plugin. Am I right that this for example could be inserted with
<script>
jQuery(function($){
$(“#woensdag”).datepicker({
beforeShowDay: function(date){
var day = date.getDay();
return [day != 0 && day != 1 && day != 2 && day != 4 && day != 5 && day != 6];
}});
});
</script>
I have tried several of these code examples here, none seem to be working for me on the latest version of WordPress and the latest plugin. Am I right that this for example could be inserted in the html with:
<script>
jQuery(function($){
$(“#woensdag”).datepicker({
beforeShowDay: function(date){
var day = date.getDay();
return [day != 0 && day != 1 && day != 2 && day != 4 && day != 5 && day != 6];
}});
});
</script>