I'm using the jQuery FullCalendar plug-in in my asp.net app. I need an alert window to come up when requestors click on a day in the calendar to reserve a date that is less than three weeks away.
I have the code for the alert that works, like
dayClick: function (date, allDay, jsEvent, view);
alert('The requested date is within the 3 week reservation window.');
But I'm in trouble with a "three weeks" "if" statement/condition, like
if date<=date(+21)
that should trigger the alert pop-up.
Could you please help? Thank you in advance very much!