i want to enable only "friday" in datepicker.
$(".input-monthpicker").datepicker({
format: "dd/mm/yyyy",
autoclose: true,
//startDate: new Date(),
beforeShowDay: function (date) {
return [date.getDay == 5]
}
});
am trying this simple code but not working \n NOTE: this field inside jqgrid column \n please find what is an issue