IT Community - Software Programming, Web Development and Technical Support

Show the next seven days in a drop down list.

This is a discussion on Show the next seven days in a drop down list. within the HTML, CSS and Javascript Coding Techniques forums, part of the Web Development category; Hi all... Can anyone tell me how can i show the next seven days in a drop down list. Thanks ...


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 03-18-2008, 09:13 PM
itbarota itbarota is offline
D-Web Architect
 
Join Date: Jun 2007
Posts: 547
itbarota is on a distinguished road
Default Show the next seven days in a drop down list.

Hi all...



Can anyone tell me how can i show the next seven days in a drop down list.



Thanks in advance...
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 03-18-2008, 09:15 PM
Pvinothkumar Pvinothkumar is offline
D-Web Analyst
 
Join Date: Sep 2007
Posts: 237
Pvinothkumar is on a distinguished road
Default Re: Show the next seven days in a drop down list.

Hi all...


<script language="JavaScript">
var now = new Date();
now = new Date(now.getFullYear(),now.getMonth(),now.getDate( ),0,0,0); // midnight

var text = '<form><select>';
for (i=0; i<7; i++) {
var theDay = new Date(now.getTime()+(i*24*60*60*1000));
text += '\n<option> ' + theDay.getFullYear() + '/' + (theDay.getMonth()+1) + '/' + theDay.getDate();
}
text += '</select></form>';
document.write(text);
</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
Show the number of days, hours and seconds till Y3K. itbarota HTML, CSS and Javascript Coding Techniques 1 03-10-2008 01:28 AM
How Can I show tool tip for the dropdown list ? kingmaker HTML, CSS and Javascript Coding Techniques 2 01-18-2008 02:11 AM
How can I change the contents of a drop down select list? itbarota HTML, CSS and Javascript Coding Techniques 1 10-29-2007 08:14 AM
double clicking the option in drop down list menu vijayanand HTML, CSS and Javascript Coding Techniques 3 08-06-2007 07:27 AM
List in Google in Just 7 days vadivelanvaidyanathan Google 3 04-26-2007 01:21 PM


All times are GMT -7. The time now is 11:46 AM.


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

SEO by vBSEO 3.0.0