Aptana3 and IE 11 - Some bug??? It works fine in Chrome but why not in IE11

Aptana3 and IE 11 - Some bug??? It works fine in Chrome but why not in IE11

test12.php
<!DOCTYPE html> 
<html> 
<head> 
   <meta charset="UTF-8">
<title>2014 Study</title> 
<script src=" scripts/jquery-2.1.1.min.js"></script>
<script src="scripts/tscript12.js"></script>
   
</head> 
<body>
<button id="click">click</button>
<div id="num"></div>
</body>
</html>


tscript12.js
$(document).ready(function(){


$( "#click").click(function(){
alert("haha");
});


});