Django itself doesn't really care what JS framework you use and only offers some framework agnostic helpers within the request object like http://docs.djangoproject.com/en/1.2/ref/request-response/#django.http.HttpRequest.is_ajax to distinguish requests coming as XHRs as well as django.utils.simplejson for providing Python-version independent JSON (de)serialization.
If you want more, there are some apps out there like dajax [1] out there :-) [1] http://www.dajaxproject.com/ On Sun, Jun 6, 2010 at 9:14 AM, tazimk <[email protected]> wrote: > Hi, > > I want to use ajax in my templates using jquery. > Can someone provide me some sample examples /links related to > this. > Also some sample examples on using Jquery efficiently > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

