> I can get the name in tab name as Site. But how do I get the other > data inside Number,Name and other things. Or atleast just the div part > which is in the table.
Might help, depending what language your parser is in http://www.google.com/search?q=how+to+parse+xml Your XML isn't well-structured, that doesn't help <gmap_data> <markers> <marker id='1' lat='21.321' lng='12.123' imgSrc='' isKeySite='Y' > <tab name='Site'> <![CDATA[<div style='width:300px; height:135px; overflow:auto;'> .... Youy have a tag <gmap_data> , containing a tag <markers>, which in turn contains one (or more, presumably) tags <marker> Tag <marker> has various attributes like 'id' that are easy to parse. Tag <marker> also contains a tag <tab>, which in turn has an attribute 'name'. So far so good. Tag <tab> also contains an anonymous tab <![CDATA ..... > which isn't valid XML If you structure your XML more like <tab name='Site'> ![CDATA[<div style='width:300px; height:135px; overflow:auto;' ..... </tab> then your HTML inside the CDATA could be parsed as the value (not an attribute) of <tab> Doesn't have anything to do with maps. -- 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.
