I'm attempting to calculate the day of the year (either with today or another date).
In PHP I can use the date() function and do whatever I want...
Is there something similar in JS/jQuery?
Thanks
|
I'm attempting to calculate the day of the year (either with today or another date). In PHP I can use the date() function and do whatever I want... Is there something similar in JS/jQuery? Thanks |
|||||
|
|
Surprised nobody posted about moment.js, it's very similar to date.js, but lighter (5.5k minified) Just did a benchmark and found it parses much faster than date.js, but formatting and manipulating is slower. For one-liners it'd execute faster than date.js due to the faster parsing. http://jsperf.com/underscore-date-vs-datejs/7 Some usage examples:
|
|||
|
|
|
I use Datejs. |
|||
|
|
|
|
|||||
|
|
Datejs looks like it's definitely the way to go... however, if you're still looking for a jQuery answer, that's here: |
||||
|
|
|
If you're coming from PHP, you might enjoy this port of strftime to JS. http://hacks.bluesmoon.info/strftime/demo.html
I've used it a bunch and it's great. I believe it's significantly lighter weight than Datejs. |
|||
|
|