Fábio,
I believe Sandy is spot on.
I did indeed try Slick.search(document.getElementById('Config') ...;
IE 9 returns 0.
I also tried an HTML 5 data block using the script tag, but Slick does
not parse the XML as part of a script tag:
http://jsfiddle.net/HVSQZ/4/
So, I can use Slick to parse XML contained in:
- xml tag: broken in IE, since IE appears to return an XML node
instead of an HTMLUnknownElement
- random tag: cross browser, but would not pass HTML5 validation
- script tag (HTML 5 data block): broken in Chrome and IE (not tested
in FF)
http://www.w3.org/TR/html5/scripting-1.html
https://developer.mozilla.org/en/Using_XML_Data_Islands_in_Mozilla
---
Would you recommend that I submit a ticket to modify Slick to work
with the HTML 5 data block, or is my use case inappropriate for Slick?
Thanks for the feedback gentlemen,
Eric
On Jul 6, 2:47 pm, Sanford Whiteman <[email protected]>
wrote:
> Think the problem here is that in IE, this is a "real" XML island with
> associated proprietary methods, while in the other browsers it's
> essentially an HTMLUnknownElement.
>
> -- Sandy