I want to use the jQuery.data() method to attach data to a DOM object as an alternative to storing it in an attribute.
The method seems perfectly suited to my needs, but in the jQuery docs (http://api.jquery.com/jQuery.data/), there's this line:
Note that this method currently does not provide cross-platform support for setting data on XML documents, as Internet Explorer does not allow data to be attached via expando properties.
Does this mean the method won't work in IE? In my testing the method works fine with IE8 on Windows 7, but I don't want to run into issues with any browsers.
Thanks.