Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am interested in using the jQuery tablesorter but somehow am unable to. I have followed the instructions and have placed jquery.js and the tablesorter.js in the same folder as my templates (the folder where the html file is). Unfortunately, when trying to access the .js files, it keeps hitting a 404, which I'm assuming means that the files are not on the correct path. Any ideas for this fix?

Does django have a special place to place these js files? (not in the templates folder?)

<script type="text/javascript" src="jquery-latest.js"></script> 
<script type="text/javascript" src="jquery.tablesorter.js"></script>
<script type ="text/javascript">
    $(document).ready(function() 
    { 
       $("#myTable").tablesorter(); 
    } 
); 

The myTable is the same exact table as the one in the examples

Thank you!

share|improve this question
why not use absolute path? – madfriend Jul 17 '12 at 15:39
3  
1  
@user1530318 I think you've misunderstood the template system -- it's a good idea to start over and understand how django answers http request with the url dispatcher, calls a view, renders a template with context data etc... – benjaoming Jul 17 '12 at 15:44

2 Answers

up vote 2 down vote accepted

Usually jquery, js, css, images and most of other static contents are handled as static files and not as django templates. Read managing static files docs.

share|improve this answer

For jQuery, you can use Google API :

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>

And for Django, Did you configure a path for your scripts/médias etc... ? (in settings.py maybe ?)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.