Hello,
In jQuery 1.4.4, Sizzle.selectors.filter.CLASS, line 3769, I see:
- return (" " + (elem.className || elem.getAttribute("class")) + " ")
- .indexOf( match ) > -1;
I believed .className is perfectly cross-browser, so what is the purpose of the .getAttribute("class")?
Regards