Django and AJAX
The B-List has really been doing some outstanding writing when it comes to Django. Previously covered topics include extending the Django user model and how Django processes requests.
Now there’s a quick overview of doing AJAX with Django:
Doing AJAX with Django has always been pretty easy, though maybe in a way that’s not obvious to users of other frameworks. All you have to do is use a slightly different template — to return XML- or JSON-formatted data instead of HTML — and you’re golden.
Good stuff!