All posts in category ajax

Get an XML in jquery

$.ajax({ type:”GET”, url:”story.xml”, dataType: “xml”, success:function(xml){                      $(xml).find(‘line’).each(function(){                          var id_text = $(this).attr(‘id’)                          var name_text = $(this).find(‘name’).text()    storyArray[$(this).attr('id')] = $(this).text();     [...]