Stephan Beal wrote:
On Jul 27, 5:48 pm, Christof Donat <[EMAIL PROTECTED]> wrote:
so what is the proper syntax for calling this named function for that
change event?
$(this).change(myfunction);

To expand on that a small bit: if you want to call a method of an
object then you must create an anonymous function to do it for you:

$(this).change( function(){ myobject.myFunc() } );

I was of the impression that

$(this).change(myObject.myFunc);

would work...


--Klaus

Reply via email to