adding Jquery libraries to MVC4 applications
asp.net-mvc-4, jquery
Solution
Download the script file. add the script in script folder
<script src="@Url.Content("~/Scripts/jquery-1.7.2.min.js")" type="text/javascript"></script>
//Or
<script src="../../Scripts/jquery-1.7.2.min.js" type="text/javascript"></script>
then call the above script line in layout page.
Problem
Can someone please explain to me how you add jquery libraries to an asp.net MVC4 application. I am trying to figure out how to add them to razor views. All I can find online are tutorials for Jquery Mobile? Well, I just want to know how to add jquery libraries to cshtml views. Any link with some example would be great.