I want to use jquery in my django project but I can't seem to be able to load the jquery file as my simple function just doesn't do anything.
I put the jquery.js file in the same folder than my view and I call it this way
<script type="text/javascript" src="jquery.js"></script>
But then when I try a simple function, it does nothing when I click on a link
<script type="text/javascript">
$(document).ready(function(){
$("a").click(function(){
alert("mii");
});
});
</script>
Why isn't it loading the jquery file ?