I try to use #accordion (jquery) in my MVC5 view even thought I tried several ways to add the reference to Jquery files, I m getting this error:
JavaScript runtime error: Object doesn't support property or method 'accordion'
this is my view:
@model CSAProject.Models.CustomerModel
<script src="@Url.Content("~/Content/jquery-ui.css")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery-ui.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery-1.10.2.js")" type="text/javascript"></script>
<sty ...
Go to the complete details ...