I am trying to use a simple dropdown button from the Twitter Bootstrap. However, it's isn't showing the dropdown options. The code is below and here is a link to a fiddle: http://jsfiddle.net/nunos/DjHyQ/11/
EDIT: found out the problem. I was including the bootstrap.js in the <head>. Once I changed that line to the <body> as the Twiiter Bootstrap Documentation actually says, it worked right away. I never thought there was a difference in scripts being included in the <head> or in the <body>. Now I know!
Thanks.
<div class="btn-toolbar" style="margin: 0;">
<div class="btn-group">
<button class="btn btn-primary dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
</div>
mootools 1.4.5causingTypeError: Cannot call method 'create' of undefined, here is a forked working version usingjquery 1.7.2jsfiddle.net/VG7G7 – davidkonrad Dec 7 '12 at 16:32