Hi,
I just tried to load my xml string via AJAX.LastData but it seems that I can't get it working. I tried many different things that I found in the forums and in tutorials... but it doesn't work.
I want to get the values out of this xml string:
<?xml version="1.0" ?>
<xml>
<item>
<property>
<id>1</id>
<type>type</type>
<name>name</name>
</property>
</item>
</xml>
And I'm using this to get it:
XML.StringValue("/xml/item/property/id/text()") <----- In this case I should get 1 I think
But that returns nothing. :/
What did I do wrong? Is something with the xml file wrong?
Thanks!