vote up 2 vote down star
1

I have a third party javascript plugin but including the file breaks Intellisense for jQuery amongst other things. The only way I can get Intellisense back working with jQuery is by commenting out the plugin. Is there a way I can hide the plugin file from the Intellisense parser?

flag

62% accept rate

4 Answers

vote up 7 vote down check

Service Pack 1 added the following feature:

If you "anyfile.js" and "anyfile-vsdoc.js" in the same directory, then any references to "anyfile.js" will automagically be converted to a reference to "anyfile-vsdoc.js" behind the scenes.

Add an empty file next to your plugin with "-vsdoc" appended to the filename. That should "hide" the plug-in from the external javascript processor.

link|flag
yep that did it, thanks – flesh Nov 14 '08 at 20:04
vote up 2 vote down

you could always load it from your codebehind instead of the scriptmanager in your aspx/master, that way the intellisense doesn't know it's there. using ScriptManager.RegisterClientScriptInclude(..)

link|flag
vote up 1 vote down

It could be that third party JavaScript plugin you're using has some errors in it.
I would check the code in JSLint and directed this question to the author of the plugin.
As for the question itself: I don't think you can exclude it if it's a part of the project, but go over the MSDN: Using IntelliSense to prove it.

link|flag
it does and i have :) – flesh Nov 12 '08 at 23:14
vote up 1 vote down

Since you mentioned jQuery, you could also load the troublesome script during runtime.

$.getScript("XXX.js");

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.