Is it possible to determine if a date is a Saturday or Sunday using JavaScript?
Do you have the code for this?
var date = new Date(); var day = date.getDay(); if(day==0){ return false; //alert('sunday'); }