I'm not sure there's anything unique to your form being inside a dialog, in
terms of how to submit it. You can use a traditional form submit:
<form id="myForm" method="post" action="url/to/submit/form/to">
...
</form>

To submit it, call

$('#myForm').submit();

Or you can use Ajax to submit the form, using something like the jQuery Form
plugin:

http://malsup.com/jquery/form/

<http://malsup.com/jquery/form/>- Richard

On Tue, Aug 11, 2009 at 8:34 PM, fib <desem...@gmail.com> wrote:

>
> Hi all
>
> I am struggling to submit the form that I am using
>
> I am using the jqueryui dialog modal form
> http://jqueryui.com/demos/dialog/?#modal-form
>
> the form is populated with the correct data from a database
> I have a button in place and am following the example to validate
> but
> how do I submit the form to a specific url?
>
> thank you in advance
> much appreciated
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to jquery-ui@googlegroups.com
To unsubscribe from this group, send email to 
jquery-ui+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to