iteratee | {Function} | A function to be invoked once for each element. (element, index, collection) are passed as arguments. Within the iteratee, `this` refers to the current element. |
DollarJS (chainable)
$('p').each(function (elem) { console.log(elem); })
$('p').each(function () { console.log(this); })
Aliased as .forEach() for convenience