Does anyone know how can I get next week date based on this week date? example if I have this thursday date (25/6/2009) how can I use javascript to get next thursday date (2
Date.prototype.addDays = function (d) { if (d) { var t = this.getTime(); t = t + (d * 86400000); this.setTime(t); } }; this_week.addDays(7);