TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
jQuery intellisense in Visual Studio 2008
Anil Kumar
Jun 03, 2011
4.8
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
jQuery intellisense feature can be added to Visual Studio 2008.
Microsoft is promoting jQuery and so Visual Studio 2010 is having inbuilt intellisense for it. But for earlier version of Visual Studio i.e. VS 2008, it can be done by installing kb file.
Upgrade Visual Studio 2008 to Service Pack 1 and use the KB958502. This hotfix can be downloaded from -
http://archive.msdn.microsoft.com/KB958502
A jQuery function is executed as soon as the DOM is loaded and before the page contents are rendered. The function is written in below style/syntax -
<script type="text/javascript">
$(document).ready(function() {
………statement(s) goes here………
});
</ script>
jQuery intellisense in Visual Studio 2008
Next Recommended Reading
Building JSON Tree Structure in jQuery