[jQuery] [Autocomplete] Receiving data in XML

[jQuery] [Autocomplete] Receiving data in XML


Hi,
First of all, I want to thank you about your excellent Autocomplete
plugin for jQuery.
So, I plan use your component in my open source framework called
XMLNuke. This framework produces XML, so I made some changes in jQuery
Autocomplement plugin to support receive XML data.
Here an Example:
$("#teste3").autocomplete("demo/search.php", {
width: 260,
selectFirst: false,
xmlResult: "value",
xmlAttrNodes: [ "id", "info" ]
});
The XML looks like to:
<rootnode>
<value id="1" info="Some Info 1">Some Description 1</value>
<value id="2" info="Some Info 2">Some Description 2</value>
<value id="3" info="Some Info 3">Some Description 3</value>
</rootnode>
How do I attach the file with the changes in Plugin?