<!doctype html>
<html lang="en">
</html>
<head>
    <meta charset="UTF-8">
</head>
<body>
<button>Click Me!</button>
<p>K O N T S</p>
<script src="k.js" type="text/javascript"></script>
<script src="JQuery.js" type="text/javascript"></script>
<script src="JQuery2.js" type="text/javascript"></script>
</body>
</html>
While my JS be like :
$(document).ready(function(){
    $("button").click(function(){
        $("p").fadeOut();
    });
});
This just happened this morning.
The K O N T S won't fade out when I click the Button. Anyone knows why ?
*I've made this code very simple, but still dont get where is my fault(s). *And the stuff also have been placed in a same folder.
 
     
     
    