I cannot load JQuery no matter what I do! I did exactly what was suggested in this Question --> Load jQuery into Django but I dont want to use dynamic directories in my settings.py. Static directories are fine as this is just a personal project.
From Settings.py:
MEDIA_ROOT = '/usr/local/djcode/mysite/media/'
MEDIA_URL = 'http://<my ip address>/django/media/'
From my html file:
<script type="text/javascript" src="/mysite/media/jquery-1.2.6.js"></script>
When I go to this html file, it loads, but none of my JQuery functions work.
ADDITIONAL INFO: My website (urls.py, app folders, and media folder) are all in /usr/local/djcode/mysite/. The root url of my django website is http:///django/
Please Help!!!