$(".item")
Why use a whole library, just:
document.querySelectorAll(".item")
or
function q(query) { return document.querySelectorAll(query); } q(".item")
Note: The only thing we gain from this is self-something.
continue_
$(".item")
document.querySelectorAll(".item")
function q(query) { return document.querySelectorAll(query); } q(".item")