Using getDate in input field, and displaying daysLeftUntil in another field...
I am trying to use JS in an adobe form I created. I have a date field in which the user enters the current date. Then, in another field, the days left until the end of the year are displayed. I can do this great in HTML, but behavior in Acrobat isn't quite the same.
Here's what I have so far, but applying it proves difficult.
function DayDiff(StartDate)
{
var TYear=StartDate.getFullYear();
var TDay=new Date("January, 01, 2014");
TDay.getFullYear(TYear);
var DayCount=(TDay-StartDate)/(1000*60*60*24);
DayCount=Math.round(DayCount);
return(DayCount);
}
