I'm facing a - to me - somewhat incomprehensible problem. My page
loads fine in Firefox, but I get an "operation aborted" warning in IE.
I've found out (by removing parts of my script) that it is this block
of code that causes the page to fail:
var calendarService = new
google.gdata.calendar.CalendarService
('TimeoutCal');
var feedUri = 'http://www.google.com/calendar/feeds/default/
allcalendars/full';
var callback = function(result) {
var entries = result.feed.entry;
for (var i = 0; i < entries.length; i++) {
}
}
var handleError = function(error) { }
calendarService.getAllCalendarsFeed(feedUri, callback,
handleError);
what on earth is wrong with those lines of code from IE's perspective?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---