How can I find the date 30 days after the current day? here 30 is the fixed value. how can i pass the dynamic value to this function..
days = document.getElementById('day').value;
var d = new Date();
d.setDate(d.getDate() + days);
it is not working..it gives wrong answer
You can access the time in Javascript using the Date class. Try this:
EDIT Just added a test jsFiddle here in case somebody wants to test it.
Sorry I forgot the adding!!!