[Solved] django, css working but js not working


You need jquery for bootstrap, also:

<script src="https://stackoverflow.com/questions/29545591/{{ STATIC_URL }}js/bootstrap.min.js" type="text/javascript"></script>

should be

<script src="https://stackoverflow.com/questions/29545591/{% static"js/bootstrap.min.js' %}" type="text/javascript"></script>

or

<script src="https://stackoverflow.com/static/js/bootstrap.min.js" type="text/javascript">

If you have STATIC_URL in context you also need to add a slash “https://stackoverflow.com/”,

8

solved django, css working but js not working