Sorry if this is similar to my other question, but I've been researching and I think I can phrase it better. I'm trying to parse the XML file found at http://xproshowcasex.channel-api.livestream-api.com/2.0/getstream All I am worried about is the isLive element. How can I make the isLive status an object so if it is true I can do one thing, and if it is false do another. The code below is pretty basic, but it's all I've got.
$.ajax({
type: "GET"
url: getstreamurl,
dataType: "xml",
success: function(xml) {
}
});
Thanks for your help.