This is probably a very simple thing to fix, but I've followed as instructed on lots of other posts however still my drop down menu isnt working. just to note, this is my first time using bootstrap. I tested with javascript console and got this error back "Uncaught Error: Bootstrap requires jQuery " - but i have clearly linked jquery.... This is my code
<!DOCTYPE html>
<html lang="en">
<head>
<link type="text/css" rel="stylesheet" href="css/bootstrap.css">
<script src="js/bootstrap.js"></script>
<link type="text/css" rel="stylesheet" href="custom/style.css">
<script src="http://code.jquery.com/jquery.min.js"></script>
<title>Bootstrap Proj. 1</title>
</head>
<body>
<div class="dark top-bar">
<div class="navbar-brand"></div>
<ul class="nav nav-tabs">
<li><a href="#home">Home</a></li>
<li><a href="#who">Who we are</a></li>
<li><a href="#what">What we do</a></li>
<li><a href="#how">How we do it</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Get in touch<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">FaceBook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">LinkedIn</a>/li>
<li><a href="#">Google +</a></li>
</ul>
</li>
</ul>
</div>
</body>