Sure - the steps I did are ... I'm following the tutorial at : http://www.webmonkey.com/tutorial/Easy_XML_Consumption_using_jQuery?oldid=20032
Firstly without any modifications the tutorial works as expected, no probs... 1 - download and unzip the 'Example_Files.zip' file from the Getting Started section of the tutorial. 2 - open the 'students.xml' file and change every tag name of <name> to <title> 3 - change the readXML.js file on lines 17 and 21 so they are looking for "title" rather than "name" ie .. studentName = $(this).find("title").text(); and studentPost = $(this).find("title").attr("post"); When I run it, it doesn't 'find' the students name (now with a tag of title) from the xml file. Rgds, Alex