After spending countless hours searching for a solution both here and elsewhere, I am still unable to get the bootstrap 3.3.5 menu on mobile screens to collapse and expand with a click. Is there an issue with my code that is causing this problem?
<!--navbar starts here-->
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="Home navbar-brand">
<a href="#"><span class="glyphicon glyphicon-home"></span></a>
</div><!--end Home-->
</div><!--end navbar-header-->
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#work">Work</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#faq">FAQ</a></li>
</ul>
</div><!--end nav-->
</div><!--end nav container-->
</div> <!--end navbar-->
To include jquery and bootstrap at the end of the body, use this code:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Bootstrap core JS -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>