This should be easy, but I'm looking to add an integer variable called "rental_period" to the current date and then display it in DD/MM/YYYY form. This is my code:
duedate.setDate(duedate.getDate()+rental_period);
$("#pricing_due").html("DUE DATE: <strong>" + duedate.getDay() + "/" + duedate.getMonth() + "/" + duedate.getFullYear() + "</strong>");
rental_periodisn't measured in milliseconds. – SLaks Feb 8 '10 at 21:08