> function banana() {
> alert('banana function called');
> }
>
> $('tr').hover(banana(), banana());
>
>
> …does not?
Does this work?
$('tr').hover(banana, banana);
This passes the functions themselves instead of the values that the
functions returned.