Funkcja kluczowania jQuery nie działa?

Mój plik HTML:

<html>
<head>
  <script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
  <script type="text/javascript" src="js/scripts.js"></script>
  <link rel="stylesheet" type="text/css" href="style.css" />
  <title>
    Login
  </title>
</head>
<body>
<div class=loginForm>
  <p>Worker-ID:<input type=text id=workerID name=workerID /></p>
  <p>Password:<input type=password  id=workerPassword name=workerPassword /></p>
  <input type=submit id=submitLogin name=submitLogin value="Log in"/>
</div>
</body>
</html>

Moje scripts.js:

$('#workerID').keyup(function() {
    alert('key up');
);

To w ogóle nie działa. Spróbowałem wszystkiego, miejsca, jednej litery, liczb. Alert nie pojawia się. Gdzie jest błąd?

questionAnswers(4)

yourAnswerToTheQuestion