I have no idea what I am doing when it comes to front-end development. I have an anchor tag, and upon a click, I want a Bootstrap dropdown menu to show, here is the HTML:
<div class="dropdown"> <a data-target="#" class="dropdown-toggle" data-toggle="dropdown">Developer Ctrls</a> <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu"> <li><a tabindex="-1" href="#">Action</a></li> <li><a tabindex="-1" href="#">Another action</a></li> <li><a tabindex="-1" href="#">Something else here</a></li> <li class="divider"></li> <li><a tabindex="-1" href="#">Separated link</a></li> </ul> </div> The above HTML is taken directly from http://getbootstrap.com/2.3.2/javascript.html#dropdowns
The problem is that although the anchor tag shows up, when I click it nothing happens - the dropdown menu does not appear.
I have both bootstrap js and css, from: https://www.bootstrapcdn.com/
What is the step that I am missing in order to get the dropdown to show?