I am trying to use Bootstrap 3 fixed top navigation bar. But when I decrease the browser screen size and click the button its not showing any links
Here is the code
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="bootstrap/css/bootstrap-theme.min.css"> </head> <body> <!-- Creating a Fixed (top) Navigation Bar with Dropdown --> <div class="navbar navbar-default navbar-fixed-top"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a href="#" class="navbar-brand">Exclusive</a> </div> <div class="navbar-collapse collapse"> <ul class="nav navbar-nav"> <li><a href="#">Products</a></li> <li><a href="#">Blog</a></li> <li><a href="#">About</a></li> <li><a href="#">Contact Us</a></li> </ul> </div> </div> </div> <script src="bootstrap/js/bootstrap.min.js"></script> <script src="bootstrap/js/bootstrap.js"></script> <script src="bootstrap/js/jquery-1.11.3.js"></script> </body> </html> But on resizing and clicking the toggle button it doesn't display links
I have included jquery files that are required.


