vote up 0 vote down star

I'm trying to parse an XML file returned by a webservice with jQuery. Here is the code I have set up, but nothing seems to happen.

$.ajax({
	type: 'GET',
	url: 'http://www.sample.com/webservice',
	dataType: 'xml',
	success: function(xml){
		console.log(xml);
		$(xml).find('movies').each(function(){
			$(this).find('movie').each(function(){
				var lat = $(this).attr('lat');
				$('div#lat-info').html('<p>' + lat + '</p>');			
			});
		});
	}
});

The webservice does not explicitly create a file with '.xml' at the end that I can reference. I must reference the URL to the webservice.

flag
Well I can't put it in any better words. Nothing really happens. I threw a few console.log() statements in there to see what was being fired, and the success function definitely wasn't. – bobthabuilda Sep 17 at 18:27
@bob: try passing an error callback and see if that gets called. Try looking at the request going out in Fiddler/Firebug. – Crescent Fresh Sep 17 at 18:29

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.