I have tried everyway that I can think of to get this code to add 15 days with out the funky date happening and thus far no luck.
Code:
<script type="text/javascript"> <!-- var currentTime = new Date(); var month = currentTime.getMonth() + 1; var day = currentTime.getDate() var year = currentTime.getFullYear(); document.write(month + "/" + day + "/" + year) //--> </script>
Comment