How do I get the date that is 7 days from the date that is selected in datepicker?
I'm trying to alert the date that is 7 days from when a date is selected from datepicker. So far I have
code:
- $("#start_date").datepicker({
- dateFormat: 'yy-mm-dd',
- onSelect: function(dateText, inst)
- {
- alert($("#start_date").datepicker( "option", "defaultDate", +7));
-
- }
- });
That code alerts [object object]. How do I get the date that is 7 days from the date that is selected in datepicker?
-Thank you,
Rich