I am looking to implement the following: Calendar example
What I am looking to do is wipe out all the events and start fresh with my own event dates. There are many locations where I see date occurance,
One of the event entry is the following from events.json:
{
"date": "1337594400000",
"type": "HERE I AM",
"title": "Project A meeting",
"description": "Lorem Ipsum dolor set",
"url": "http://www.event1.com/"
},
How is the date calculated with: 1337594400000?
I looked at the documentation but wasn't too clear. If someone good with json could give me some ideas or how should I go on about starting it, I would greatly appreciate it.
Date(1337594400000)yields a date object equivalent to"Mon Apr 22 2013 14:50:44 GMT-0500 (CDT)"-- developer.mozilla.org/en-US/docs/JavaScript/Reference/…