I'm looking for most elegant way to ajaxify my forms (with jQuery).
How do you do this?
| |||
|
feedback
|
|
Here is my solution (I think it is a Progressive enhancement solution), using only jQuery without any plugins:
UPDATED: If your POST response is "HTML with form" then try this:
| |||||||||||||
feedback
|
|
Ajaxify your forms... that is pretty vague. If you want to submit a form asynchronously, you could use $.post() to post to a separate controller action. Example: In the view:
In your controller:
That is what I'm using in some of my forms at least. P.S.: I wrote this in the stackoverflow text editor so it's not really tested. But as an outline, it should work. | |||
|
feedback
|
|
Checkout JQuery plugins storage I'm sure there you will find that you need | |||||||||
feedback
|
|
old one: when you don't know what to do anymore, read documentation cheers | |||
|
feedback
|