Reputation: 79
My navigation button is not working. (Menu is not opening).
I have included bootstrap js
file too, but then also it is not working.
Upvotes: 0
Views: 36
Reputation: 1148
I suggest you to make change the following script source :
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
Change it to -
<script src="/index/vendor/jquery/jquery.min.js"></script>
<script src="/index/vendor/bootstrap/js/bootstrap.bundle.min.js">
Upvotes: 3