i have the following Jquery function inside my view:-
<script type="text/javascript">
$(document).ready(function () {
$("#album-list").mouseover(function () {
$(this).animate({ height: '+=15', width: '+=15' })
.animate({ height: '-=15', width: '-=15' });
});
});
</script>
i have added the following scripts to the _layout view:-
<script src="@Url.Content("~/Scripts/jquery-1.6.2.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery-ui-1.8.14.min.js")" type="text/javascript"></script>
but when i navigate to the view that contains the above Jquery function; the following error will be raised ""Microsoft JScript runtime error: '$'"". So what might be the problem? BR