У меня есть XML-документ, похожий на этот:
<Xmlpp Version="0.3"><meta><Id>123456789</Id></meta></Xmlpp>
И вот как ведет себя jQuery:
// theDocument is a reference to the XML document
$("meta id", theDocument).size(); // Will return 0
$("meta Id", theDocument).size(); // Will return 1
Есть ли способ выполнить поиск без учета регистра?