I\'m new to jQuery and am bit confused about the use (or not) of parentheses with a callback function. Say I have a function:
function cb() { // do somethin
cb() means give me the result of executing the function cb.
cb()
cb IS the function cb or, more accurately a pointer (reference) to it.
cb