Forum     

Go Back   Digit Technology Discussion Forum > Software > Programming
Register FAQ Calendar Mark Forums Read

Programming The destination for developers - C, C++, Java, Python and the lot


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 30-06-2009, 03:45 PM   #1 (permalink)
Broken In
 
Join Date: Jun 2007
Posts: 132
Default javascript code to display the day


i have create one page.and the page is look like

date : (javascript calendar)

day:

so the date can be selected by javascript calendar.what is my question is when i select the date then automatically the day coloum can be filled like(monday,tuesday...........).can anyone please provide me the solution.
thecreativeboy is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 30-06-2009, 08:06 PM   #2 (permalink)
In The Zone
 
Kalyan's Avatar
 
Join Date: Nov 2005
Location: Earth
Posts: 241
Default Re: javascript code to display the day

Here it is..
function showDay()
{
var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thu rsday","Friday","Saturday");

var dt = new Date(document.getElementById("date").value);
document.getElementById("day").value = dayarray[dt.getDay()];
}

you need to call this method when the event occurs for the calendar to show the date in the date field or you can include this into the script that is in the calendar.. which ever is feasible. The "date" field is supposed to be the textbox with date ( I did it for "MM/dd/yyyy" format) and the "day" field is the textbox where you want to display the date.

Logic: initialize the date as a Date object. The Date.getDay() gets you the day starting with 0 for Sunday and so on.

Hope this helps
__________________
My config: AMD Athlon x2 5600+, Asus M2NPV-VM, Transcend 2x1GB 800MHz, XFX 8600GT 256MB, Seagate 250GB SATA2 + Seagate 500GB SATA2, LG 1752s LCD, Sony DRU v200A DVDRW, Logitech MX518, iBall Benz cab
Kalyan is offline  
Closed Thread

Bookmarks

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

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


 
Latest Threads
- by Sujeet
- by gforz
- by soumya

Advertisement




All times are GMT +5.5. The time now is 03:14 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2