Add months to a date using jQuery
Posted
by hminaya
on Stack Overflow
See other posts from Stack Overflow
or by hminaya
Published on 2009-11-04T21:35:18Z
Indexed on
2010/05/24
20:51 UTC
Read the original article
Hit count: 204
I have a simple MVC form with the following elements:
<%= Html.TextBox("FechaInicio") %>
Which has the start date.
<%= Html.TextBox("Meses") %>
Which has the amount of months I want to add.
I'd like to take the date that has been entered on the first textbox, add the amount of months that have been entered on the second textbox and get that value.
© Stack Overflow or respective owner