I want to show some events every year. E.g Like birhday, holiaday. which come every year on a specifc date Thanks
A:
My first reaction is to make a function. Add an object literal boolean to your event data like holiday:
{
"id": "1",
"title": "All Day Event ",
"allDay": "true",
"start": "1283378679",
"end": null,
"url": "#",
"holiday": "true"
},
then, if ( event.holiday === true ) { event.start = 2010-09-10
You'll have to figure out the formatting but that might work.
orolo
2010-09-03 22:02:26