if i have a textbox with a date in it, i want to change the textbox to show one month later
So I'm trying to add a certain number of days to a date, and I'm getting a strange issue:
var date = new Date(); var newdate = date.getDate() + $('#ddlDays option:selected').val(); date.setDate(newdate);
I have a jQuery script which returns the current date into a text box. However, when a month with only one digit is displayed (e.g. 8) I want it to place ...
I am trying to add a number of days to a date selector input to get a start date and end date. I am getting an incorrect end date and cant ...