I have a 48 hour timeline. I'm utilizing the JavaScript date function. I am looking for the following format and I am not sure how to achieve it. I want to display today's date and the next day.
DD - DD+1 MMM YY
<script>
var d = new Date();
var n = d.getDate();
document.write(n);
</script>
http://jsfiddle.net/deaconf19/bGm6c/
Thanks