I want to start learning jquery/jquery ui but I seem to be stuck at the most basic step; getting it to load. I've tried with 3 different versions and none of them are working.
In my masterpage:
<link href="Content/css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="Content/css/jquery-ui.min.css" rel="stylesheet" />
<script src="Scripts/jquery.js"></script>
<script src="Scripts/jquery-ui.min.js"></script>
<script src="Scripts/bootstrap.min.js"></script>
All of the jquery is from jquery UI download. I've tried with versions from normal jquery site aswell.
When I load page:

Im trying to run just a simple test in html:
<input type="text" name="date" id="date"/>
Script:
<script type="text/javascript">
$(document).ready(function() {
$("#date").datepicker();
});
</script>
$(document).ready(function() { ... });As304 is Not Modifiedso not an issue.Console?Scripts/jquery.js