Skip to content Skip to sidebar Skip to footer

Bootstrap Navbar Doesn't Toggle

When I try the mobile version of my jumbotron-based page, the navbar doesn't toggle. I want it to fold out like in the example but it doesn't. Maybe I'm missing some code, can you

Solution 1:

Please try to check your bootstrap.min.js or bootstrap.js. may be that are not loading properly.

Solution 2:

Can you show us the part where you import bootstap and jquery ?

I believe the failure is there. Because for me the example is working. I had the same behaviour before bringing my imports into order.

<linkrel="stylesheet"href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"><scriptsrc="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script><scriptsrc="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>

This should be placed in the <head> in this order to provide a proper functioning of Bootstrap.

Post a Comment for "Bootstrap Navbar Doesn't Toggle"