Im creating a signup page for my website but it is not responding to a click. I have the jQuery in a seperate file called signup.js. I know it is linked properly because an alert works. Any help would be apreciated. Thanks
html:
<html>
    <head>
        <title>Sign Up</title>
        <script src="JS/jquery-3.1.1.min.js"></script>
        <script src="JS/signup.js"></script>
        <link rel="stylesheet" href="CSS/signup.css">
        <link rel="stylesheet" href="CSS/bootstrap.min.css">
    </head>
    <body>
        <div class="container">  
            <div class="jumbotron">
                <button id="signup-button">Sign Up</button>
            </div>    
        </div> 
    </body>
</html>
jQuery:
$("#signup-button").click(function() {
    alert("clicked");
});
 
     
     
     
    