Jump to content

Disable date


sandy1028

Recommended Posts

<SCRIPT LANGUAGE="JavaScript">
        var cal = new CalendarPopup();
        var currentTime = new Date();
        var month = currentTime.getMonth() + 1;
        var day = currentTime.getDate();
        var year = currentTime.getFullYear();
//Disables the todays and previous days dates   
   cal.addDisabledDates(year+"-"+month+"-"+day);
      cal.addDisabledDates(year+"-"+month+"-"+(day-1));
        

 

How to disable the dates from next day till the end of the month in calender

 

Link to comment
https://forums.phpfreaks.com/topic/72903-disable-date/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.