[RESOLVED] Javascript: Adding Month To Current Date
Hello!
Here's the code I am using to add 6 months to today's current date.
It uses jQuery also. When the "6months" checkbox is checked, I want to have 6 months added to the current date and then insert it into the "Date" textbox.
[CODE]
$("#6months").click(function(){
if ($("#6months").is(":checked"))
{
var d = new Date();
d.setMonth(d.getMonth()+7);