I have a really basic question. I\'m trying to build some AJAX functionality into a Django project. I plan to use jQuery. Right now, I\'m just running the code locally th
Step1: put your jquery-2.0.3.js in the APP's "static" subfolder,like "books/static/jquery-2.0.3.js";
Step2: config your urls.py, add the following line:
r('^static/(?P.*)$','django.views.static.serve'),
Step3: in your template file, use the js file as follows:
That is all.