Since Javascript is a static file you have to define your js directory
in your urls.py. I've used a lot of Javascript Libraries and all have
worked successfully.

First in urls.py

(r'^js/(?P<path>.*)$', 'django.views.static.serve', {'document_root':
'/media/agora/js/lib/MochiKit/'}),

And then in your templates

<script type="text/javascript" src="/js/MochiKit.js"></script>

It's going to work.

-Thejaswi Puthraya
http://thejuhyd.blogspot.com


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to