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() } );

