Hi, I am trying to extract data from a child of a tag from my ajax script. this works with javascript
coursename = xmlDocument.getElementsByTagName("sitelist");
name = coursename[3].firstChild.data
Can someone help me with doing this using jQuery please? I thought this would work, but it is not.
name = $("coursename", xml).text()
Any help or pointers would be great, thanks.
source
share