Add months to a date using jQuery
- by hminaya
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.