I've got a XML document looking like this:
<Xmlpp Version="0.3"><meta><Id>123456789</Id></meta></Xmlpp> And this is how jQuery behaves:
// theDocument is a reference to the XML document $("meta id", theDocument).size(); // Will return 0 $("meta Id", theDocument).size(); // Will return 1 Is there a way to do a case insensitive search?