Your browser does not support JavaScript! Please enable script of your browser.
Ɖot Net Tricks
" Coding , A Rhythmic Literary Job "
Handy Tricks For Beginners & Professionals
Asp.Net MVC 4, 3 - Tutorial, Article, Archive, Pdf, Handy Tricks, Code Snippets, Training, Reference Manual, Model, View, Controller, Routing System, Unobtrusive Validation, Html Helpers, Razor Engine, Data Annotations, Dependancy Injection, Database Access, Security, Configuration and Deployment

Enable jQuery Intellisense support to MVC3 Razor

Posted By : Shailendra Chauhan, 02 Nov 2012
Updated On : 02 Nov 2012
Version Support : MVC3 & MVC4

jQuery intellisense support helps a lot while programming with jQuery. By default Visual Studio doesn't provide us the jQuery intellisense support. We can enable the jQuery intellisense support in Visual Studio with MVC Razor by adding vsdoc.js file to your view like as :

 @if (false) 
{ 
<script src="~/Scripts/jquery-1.7.1-vsdoc.js" type="text/javascript"></script> 
} 

The above if-statement prevents the rendering of script tag into the html source code and it used only by the Visual Studio for jQuery intellisense support. To check jQuery intellisense type the $ or $( between your $(document).ready(function() function and you can see the intellisense as shown in fig.

Note

  1. In MVC Razor, there is no central place to add the reference to the vsdoc.js file. We need to add this code line to each every view separately to enable the IntelliSense support for jQuery.

What do you think?

I hope you will enjoy these tricks while programming with Visual Studio. I would like to have feedback from my blog readers. Your valuable feedback, question, or comments about this article are always welcome.

 
 
Recommended Articles !!
 
Tips & Tricks Subscription
 
.Net Interview Book (Coming Soon..)
 
Join Training Programs in Noida
 
Search Articles
 
Browse By Category
 
Recent Articles
 
Most Popular Articles