Actions
Refactor #8721
closedReplace all uses of jQuery(item).attr('id') with item.id
Description
No need to use jQuery when we don't have to.
Using plain item.id is about 100X faster:
http://jsperf.com/jquery-item-attr-id-vs-item-id
Actions