I am working on a page that displays water quality monitoring sites on an embedded Google Map, and populates their InfoWindows with data culled from Google Spreadsheet. It works fine in Firefox, but in IE, the map and icons load but the data goes missing.
This is the page: http://www.cesd.umass.edu/environmental_ed/WaterMonitoringSites/ This is the Javascript function that retrieves the data: var script = document.createElement('script'); script.setAttribute('src', 'http://spreadsheets.google.com/feeds/' + 'list' + '/' + 'rNbPZ4CZQcS6vJOdGxURwOg' + '/' + '1'+ '/public/values' + '?alt=json-in- script&callback=sortEntriesBySite'); script.setAttribute('id', 'jsonScript'); script.setAttribute('type', 'text/javascript'); document.documentElement.firstChild.appendChild(script);; } Is this some IE restriction I should know about? Any hints much appreciated. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Docs Data APIs" group. To post to this group, send email to Google-Docs-Data-APIs@googlegroups.com To unsubscribe from this group, send email to google-docs-data-apis+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/Google-Docs-Data-APIs?hl=en -~----------~----~----~----~------~----~------~--~---