Lots of ways, but "Calendar GData" won't help you do so ;->
I recommend algorithms such as the following:
function generateAllSundays(startDay, endDay) {
var currentDay = startDay;
while (currentDay <= endDay) {
if (currentDay.getDayOfWeek() == 'sunday') {
write(currentDay);
}
++currentDay;
}
}
On Nov 12, 9:32 pm, Thamilselvi <[email protected]> wrote:
> hi ..
>
> how to get all date of Sunday r monday given for particular month or
> date range specified in event
--
You received this message because you are subscribed to the Google Groups
"Google Calendar Data API" group.
To post to this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-calendar-help-dataapi?hl=.