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.




_______________________________________________

UPHPU mailing list
[email protected]
http://uphpu.org/mailman/listinfo/uphpu
IRC: #uphpu on irc.freenode.net

Reply via email to