I am currently working on a responsive navbar that collapses for mobile users. The collapse icon is displayed when the screen size is reduced, however, it does not expand upon clicking.
<div id="headerfront" class="navbar navbar-static-top">
<div class="container">
<a href="" class="navbar-brand" ><img id="logo" src="images/brand.png" height="44px" width="146px" /></a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navHeaderCollapse">
<span class="glyphicon glyphicon-chevron-down" ></span>
</button>
<div class="collapse navbar-collapse navHeaderCollapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#" class="" >Sign In</a></li>
<li><a href="#" class="" >Sign Up</a></li>
</ul>
</div>
</div>
</div>
These are the links and scripts included in the head section:
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js" type="text/javascript"></script>
<script src="js/boostrap.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.css">
Does anyone have any suggestions or solutions? Thank you!