I am working on the twitter bootstrap website
using this example to develop my site
http://twitter.github.com/bootstrap/examples/hero.html
but the problem is when i reduce my browser size i see the menu icon but when i click it i dont see the drop down menu
how to fix it
providing my code below
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
One issue is that, based on the code in your jsfiddle, you are not properly loading external resources.
For the boostrap .js files, try this:
Another issue is that jsfiddle’s
.window_labelelement is covering the top right corner of the navbar. One way to get rid of it, using Google Chrome, is to use the html inspectorand delete the
.window_labelnode for an unencumbered view of the navbar button.