Date less than today
- KateřinaCísařová
- Posts: 2
- Joined: Tue Apr 20, 2021
Hi,
can you help me with code, please?
I need to change status if user chooses date less than today.
Thank you very much.
Katerina
can you help me with code, please?
I need to change status if user chooses date less than today.
Thank you very much.
Katerina
- Nikita Kurguzov
- Posts: 889
- Joined: Mon Jul 03, 2017
Replied in the other topic, but just in case, the following JS code should work:
Of course, it might need some adjustments to your case, so if you have any issues - please, post a screenshot of a form with console errors that you get!
Code: Select all
function compareDateToToday(date){
var q = new Date();
var m = q.getMonth();
var d = q.getDate();
var y = q.getFullYear();
var today = new Date(y,m,d);
if(today>date){
alert("Date is before today");
}
else if (today<date){
alert("Date is after today")
}
else{
alert("Date is today");
}
}
fd.field('Date').change(function(){
var date = new Date(fd.field('Date').value());
compareDateToToday(date);
});
Cheers
-
- Information
-
Who is online
Users browsing this forum: No registered users and 3 guests