Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

JavaScript Forum


You are currently viewing our JavaScript Forum as a guest. Please register to participate.
Login



Reply
Old 01-10-2009, 11:13 PM calculate due date
Novice Talker

Posts: 10
Trades: 0
I am accepting a date in one field

and number of days in other

i want to calculate due date and display in other field
say duedate

ALso
i want to derive and display
4 dates based on duedate
for example
if due date is 10-01-2009
the rest 4 dates should be( period of 3 months)
1. 09-04-2009
2. 09-07-2009
3. 09-10-2009
4. 09-01-2010

These dates to be displayed in fields
sdt1
sdt2
sdt3
sdt4
Please help
vikaspa is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 01-11-2009, 08:15 AM Re: calculate due date
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,383
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
Simple date calculation;
Code:
var today = new Date();
var plus3 = new Date();
var plus12 = new Date();

plus3.setMonth(today.getMonth() + 3);
plus12.setMonth(today.getMonth() + 12);
to display the value;
Code:
document.formname.fieldname.value = dateVariable.toDateString();
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Reply     « Reply to calculate due date
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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

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





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.30109 seconds with 12 queries