querySelectorAll in Jquery
问题 Like the title how can I use DOM querySelectorAll() by jQuery. I am using final version of jQuery and Chrome browser For example: <ul> <li>new</li> <li>howler monkey</li> <li>pine marten</li> </ul> I tried $("li") but it just return the first li tag. -P/S: I have the answer to resolve this issue. I download jquery.js from jquery.com and linked to it but it just return the first li tag. $("li") <li>new</li> Then I used cdn link, it returns array result for me. I don't know why. $("li") (3)