IT Community - Software Programming, Web Development and Technical Support

How do I work out the date seven days before a text string mm/dd/yy?

This is a discussion on How do I work out the date seven days before a text string mm/dd/yy? within the HTML, CSS and Javascript Coding Techniques forums, part of the Web Development category; Hi all... Can anyone tell me how can I work out the date seven days before a text string mm/...


Go Back   IT Community - Software Programming, Web Development and Technical Support > Web Development > HTML, CSS and Javascript Coding Techniques

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 01-01-2008, 08:37 PM
itbarota itbarota is offline
D-Web Architect
 
Join Date: Jun 2007
Posts: 547
itbarota is on a distinguished road
Default How do I work out the date seven days before a text string mm/dd/yy?

Hi all...

Can anyone tell me how can I work out the date seven days before a text string mm/dd/yy.

Thanks...
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 01-01-2008, 08:42 PM
Pvinothkumar Pvinothkumar is offline
D-Web Analyst
 
Join Date: Sep 2007
Posts: 237
Pvinothkumar is on a distinguished road
Default Re: How do I work out the date seven days before a text string mm/dd/yy?

Hi all...

<SCRIPT LANGUAGE="JavaScript">
function week_before(s) {
// parse s for month, day, year
var dateArray = s.split('/');
sdate = new Date(dateArray[2],dateArray[0]-1,dateArray[1]);

// figure out day, month, year 7 days ago
var odate = new Date(sdate.getTime() - (7 * 86400000));

// return value
return (odate.getMonth()+1) + '/' + odate.getDate() + '/' + odate.getYear();
}

var date_7_days_ago = week_before("4/9/98");
alert(date_7_days_ago);
</SCRIPT>

Thanks...
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Add a number of days to a date itbarota HTML, CSS and Javascript Coding Techniques 6 09-23-2008 01:38 AM
Convert String to Date: new Date(string) oxygen Flash Actionscript Programming 3 03-07-2008 09:24 PM
Convert a date in milliseconds back to a date string itbarota HTML, CSS and Javascript Coding Techniques 2 03-03-2008 09:03 PM
convert a text string into a Date object. itbarota HTML, CSS and Javascript Coding Techniques 2 02-12-2008 06:37 AM
How can I compare a date in a string with todays date? itbarota HTML, CSS and Javascript Coding Techniques 2 12-18-2007 11:02 PM


All times are GMT -7. The time now is 10:19 AM.


Copyright ©2004 - 2007, DiscussWeb. All Rights Reserved.

SEO by vBSEO 3.0.0