Hi I have the following code: (bootstrap included and a dropdown
HTML Code:
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script type="text/javascript" src="http://localhost:8000/js/status.min.js"></script>
</head>
<div class="mutual_interests_search">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Dropdown Example
<span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#">1st option</a></li>
<li><a href="#">2nd option</a></li>
<li><a href="#">3rd option</a></li>
</ul>
</div>
The problem is that the dropdown isn't functioning at all, and I can't view the options. What's wrong here?