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:
var time = new Date();
time.setDate(time.getDate()+30);
alert(time);
EDIT Just added a test jsFiddle here in case somebody wants to test it.
Sorry I forgot the adding!!!
var d = new Date();
d.setDate(d.getDate()+30);
alert(d)
Tested on jsFiddle
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With