[jQuery] Re: Jguery and form plugin

2008-01-22 Thread mike
any help would be appreciated On Jan 22, 12:49 pm, mike [EMAIL PROTECTED] wrote: I am trying to use the jquery form plugin with a djano form. The form works if i use ajax submit, but has to refresh, I am trying to catch the results without refreshing the page. When i put values in the form

[jQuery] Re: Jguery and form plugin

2008-01-22 Thread mike
The django variable for my result in django template language is {{ result }} everywhere I put this on my page, firebug is showing the result in console, but it is not appearing on my page, what am I doing wrong? On Jan 22, 12:49 pm, mike [EMAIL PROTECTED] wrote: I am trying to use the jquery

[jQuery] Re: Jguery and form plugin

2008-01-22 Thread Mike Alsup
Where are you expecting the result to go? You've got a callback function there but it doesn't do anything: // bind 'myForm' and provide a simple callback function $('#myForm').ajaxForm(function() { return false; }); The result is passed into that callback, for example: