this is a bit cheeky, I'm effectively asking you to write code for me but I'm having hard time to extract certain data from a xml result
here is the xml
<?xml version="1.0" encoding="UTF-8" ?>
<GeocodeResponse>
<status>OK</status>
<result>
<type>route</type>
<address_component>
<long_name>xxxxxxxxxxx</long_name>
<short_name>xxxxxxxxxxx</short_name>
<type>administrative_area_level_3</type>
<type>political</type>
</address_component>
</result>
<result>
<type>postal_code</type>
<address_component>
<long_name>xxxxxxxxxxx</long_name>
<short_name>xxxxxxxxxxx</short_name>
<type>administrative_area_level_2</type>
<type>political</type>
</address_component>
</result>
</GeocodeResponse>
How can I get long_name of type administrative_area_level_3 on address_component of result type route with jquery?
<GeocodeResponse>, right?