Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a method using either JavaScript or jQuery to determine what day of the week it is? For instance, if the date a user picks in the box is a Sunday, I can alert them.

Thanks

share|improve this question

4 Answers

up vote 21 down vote accepted

Javascript Date Object

new Date().getDay();  //0=Sun, 1=Mon, ..., 6=Sat
share|improve this answer
1  
thank you much! :) – Jason Jul 23 '09 at 20:38

If you only need this once in your page, keep it simple...

["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"][(new Date()).getDay()]
share|improve this answer
This same string can be placed into an underscore template, without the new Date() part, to conveniently format Date objects. _.template( '<%= getMonth()+1 %>.<%= getDate() %>.<%= getFullYear() %> <%= ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"][getDay()] %>', someDateObject ) – grantwparks Mar 6 at 19:41
nice! thanks for contributing. – Richard Bronosky Mar 12 at 21:28
today=new Date()
thisDay=today.getDay()

... will get you a numeric representation to "today".

share|improve this answer
which one is sunday? :) – Jason Jul 23 '09 at 20:37
Zero is Sunday :) Because it's a language from the US. In Europe it would make more sense to have monday as zero, but that's not the case here. – Emil Stenström Aug 4 '09 at 10:16

If you need a lot of date handling, take a look at DateJS.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.