> From: DAZ
> 
> Just one more question - what if I need to provide arguments 
> to the function? Don't these need to go in parens which will 
> then cause the function to be called immediately?

Then you wrap the function call in another function (typically an anonymous
function, but could be a reference to a named function):

    drop: function() { dropped(foo,bar); }

-Mike

Reply via email to