I'm looking for most elegant way to ajaxify my forms (with jQuery).
How do you do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
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:
|
|||||||||||||
|
|
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. |
|||
|
|
|
Checkout JQuery plugins storage I'm sure there you will find that you need |
|||||||||
|
|
old one: when you don't know what to do anymore, read documentation cheers |
|||
|
|