I cannot get this simple script to run and been staring at it for awhile now and don't see any syntax errors. Simply want the alert to show on click.
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type='text/javascript'>
$(document).ready(function() {
$("#authenticate_button").click(function() {
alert("click");
});
});
</script>
</head>
<body>
<input id="code" type="text">
<button id='authenticate_button'>Authenticate</button>
</body>
</html>