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?
|
1
|
|
|
|
|
|
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. |
||
|
|
|
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(..) |
||
|
|
|
|
It could be that third party JavaScript plugin you're using has some errors in it. |
||
|
|
|
Since you mentioned jQuery, you could also load the troublesome script during runtime. $.getScript("XXX.js"); |
||
|
|
