6

I followed ScottGu's advice on enabling javascript intellisense using a -vsdoc.js file.

http://weblogs.asp.net/scottgu/archive/2008/11/21/jquery-intellisense-in-vs-2008.aspx

I now get intellisense when I write javascript inside my HTML/ASPX files. I write most of my javascript in separate javascript files that I attach to my code with script tags like this:

<script type="text/javascript" src="./js/myhappyjavascript.js"></script>

In files like this I don't get the intellisense and this is where I need it most. Does anyone know how I can get intellisense on jquery to work there too?

2 Answers 2

14

Sure, add

/// <reference path="path-to-jquery" />

at the very beginning of your js file.

Sign up to request clarification or add additional context in comments.

Comments

2

You can also include a reference to your aspx page at the beginning of your js file and intellisense will behave like you are on the page.

/// <reference path="mypage.aspx" />

You might want to take a look at the reference for the reference tag.

http://blogs.msdn.com/webdevtools/archive/2007/11/06/jscript-intellisense-a-reference-for-the-reference-tag.aspx

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.