I need to run a check on dates, one being a selected date which I had, the second needs to be the current date + 36 weeks.
I've looked around and every solution I've seen involves GetDate()
+ days.
new Date().getDate() + 252
This is not working, the date currently is 2014/03/07 so the line above takes 7 and adds 252 which is not correct.
I'm looking for any solution using JavaScript or jQuery.
Thanks in advance.