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();                  
                     });               
}
});

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: