I am trying to build an Accordion but for some reason my jQuery file is not getting picked up. if someone can please help me out I would really appreciate it. This is what I have for my
HTML
$(document).ready(function() {
$('.list').on('click', '.list-control', function(e) {
e.preventDefault();
$(this).next('list-content').not(':animated').slideToggle();
});
});
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title> Clever Oscar </title>
<link rel="stylesheet" src="main.css">
</head>
<!--start of body-->
<body>
<h1>Clever Oscar</h1>
<ul class="list">
<li>
<button class="list-control">
Phase one
</button>
<div class="list-content">
Panal Context
</div>
</li>
</ul>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>