Side navigation
#3410 closed bug (invalid)
Opened September 25, 2008 03:27PM UTC
Closed September 25, 2008 04:11PM UTC
Was Working - Now fails
Reported by: | Billy | Owned by: | flesler |
---|---|---|---|
Priority: | major | Milestone: | 1.3 |
Component: | unfiled | Version: | 1.2.6 |
Keywords: | Cc: | Billy, flesler | |
Blocked by: | Blocking: |
Description
XML Document
<?xml version="1.0" encoding="utf-8"?>
<customer>
<name>Braveheart</name>
</customer>
jQuery Code
$.ajax({
url: '../x/document.xml',
type: 'GET',
dataType: 'xml',
timeout: 1000,
error: function(){
alert('Error loading XML document');
},
success: function(xml){
alert('Do something with the XML');
alert($("customer/name", xml).text());
}
});
Was working 1.1.2 and is now broken (No data displayed) in 1.2.6pack
Attachments (0)
Change History (1)
Changed September 25, 2008 04:11PM UTC by comment:1
cc: | → Billy, flesler |
---|---|
resolution: | → invalid |
status: | new → closed |
The / selector is deprecated. Use > instead.
You should read the documentation about "How to update" before creating tickets.