On 9/11/07, Bruce MacKay <[EMAIL PROTECTED]> wrote:
>
> submitHandler: function(form) {
> $("#cform").ajaxForm(options);
> }
>

This should be

submitHandler: function(form) {
> $("#cform").ajaxSubmit(options);
> }
>

ajaxForm() binds an event handler that (among other things) calls
ajaxSubmit(). ajaxSubmit() is where the form submission actually happens.

More details: http://www.malsup.com/jquery/form/#api

-- 
Aaron Heimlich
Web Developer
[EMAIL PROTECTED]
http://aheimlich.freepgs.com

Reply via email to