Thanks - that's what I needed.
On Apr 29, 4:34 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > Can someone please point me in the right direction? I am using the > > form plugin and it works great on a form submit action. Is there a > > way I can use it on a click event on a checkbox or onblur for a text > > field to immediately save the user's data? Thanks in advance for your > > help. > > You can use the ajaxSubmit fn with any event you choose. For example, > > $('#myCheckbox').click(function() { > $('#myForm').ajaxSubmit({ > // options go here > }); > return false; > > }); > > Replace the 'click' fn above with 'blur' or whatever you need. > > Mike