Django: How do I go about changing my simple app to use Ajax?

Posted by swisstony on Stack Overflow See other posts from Stack Overflow or by swisstony
Published on 2010-06-15T15:11:10Z Indexed on 2010/06/15 16:12 UTC
Read the original article Hit count: 205

Filed under:
|
|

I currently have a web page where the user enters some data and then clicks a submit button. I process the data in views.py and then use the same Django template to return and display the original data and the results. What I would like to do is try to give it a bit more of a modern look and feel. You know the sort of thing, the page doesn't refresh but displays a spinning disk until the results are displayed. I assume this means using Ajax? How difficult is it to modify a simple app like this to use Ajax? What is involved? What are the best tools to use? JQuery?

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about AJAX