Answers for "how to add 30 days to created using jquery"

1

javascript current date add 30 days

var future = new Date();
future.setDate(future.getDate() + 30);
Posted by: Guest on April-26-2020
0

add 7 days in date using jquery

$('#start_date').change(function(){
    $('#end_date').val(Add7Days());
});
Posted by: Guest on March-27-2022

Code answers related to "how to add 30 days to created using jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language