Hi, This error appears in all browsers (chrome, firefox, ie6,7,8). The problem is in util.js in line 45 - the property length is undefined so you should add new condition:
Change: if ((request.responseXML.length == null) || to if ( (typeof request.responseXML.length == 'undefined') || (request.responseXML.length == null) || I hope it should help. Regards, Michal Biniek On 31 Gru, 07:17, Peter Dang <[email protected]> wrote: > Hi, > > I see in your src, but the util.js, please take care about it, so I think > the error is in this file. > > > > On Thu, Dec 31, 2009 at 11:46 AM, john byrne <[email protected]> wrote: > > I am getting a jscript error, in what looks to be your jscript. > > > Load this URL in IE 7 on Vista. > > >http://picturemap.nfshost.com/v3test2.html > > > It works OK, but shows a jscript error on line 29 char 1433. I > > believe the error is from your jscript files. > > > JB > > > -- > > > You received this message because you are subscribed to the Google Groups > > "Google Maps JavaScript API v3" group. > > To post to this group, send email to > > [email protected]. > > To unsubscribe from this group, send email to > > [email protected]<google-maps-js-api-v3%[email protected]> > > . > > For more options, visit this group at > >http://groups.google.com/group/google-maps-js-api-v3?hl=en. > > -- > > Thanks and Best Regards > > Peter Dang > Professional Map team developer > ------------------------------------------------------ > Phone : +84 933 933 649 > Axon Active Vietnam -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" 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-maps-js-api-v3?hl=en.
