calculating in weeks
Help please
if I need to calculate the difference between two dates in weeks and days.
how do I do please ?
I have 3 feilds
the first "DG", the second "date", the third "age"
I can make the diffrenece in weeks or days but not both
please help me
event.value = 0;var strStart = this.getField("dob").value;var strEnd = this.getField("date").value;if(strStart.length & strEnd.length) {var Start1 = util.scand("dd/mm/yyyy",strStart);var End1 = util.scand("dd/mm/yyyy",strEnd);var diff = End1.getTime() - Start1.getTime();var oneDay = 7 * 24 * 60 * 60 * 1000;var days = Math.floor(diff/oneDay);event.value = days;}
