[Solved] django, css working but js not working

[ad_1]

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

[ad_2]

solved django, css working but js not working