Hi,

This code works in FireFox, fails in IE6 and 7:
...
<script src="http://www.google.com/jsapi?key=...>
var dt=new Date();
dt.setDate(dt.getDate()-30);
var year = dt.getYear() + 1900;
var month = dt.getMonth() + 1;
if (month < 10) {month = "0" + month};
var day = dt.getDate();
if (day < 10) {day = "0" + day};
var full = year + "-" + (month) + "-" + day;
...
var query = new
google.gdata.calendar.CalendarEventQuery(eventsFeedURL);
query.setMinimumStartTime(full);

Any workaround?

Ádám
--~--~---------~--~----~------------~-------~--~----~
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]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to