I am trying to use JavaScript within my Django project. I have made a static folder within my app containing css and js folders, and whilst my css is working my js files are not. Any help would be great, thanks. HTML: settings.py: Answer You need to give a static directory to the STATICFILE_DIRS setting, not the full path: And