The javascript-intellisense tag has no wiki summary.
0
votes
2answers
43 views
single intellisense file for multiple js function files?
I have functions1.js, functions2.js and functions3.js. Each has a function, funcA, funcB and funcC respectively. I created a file called "functions.intellisense.js" and added it to _reference.js. I ...
2
votes
1answer
73 views
Visual Studio 2010-intellisense and highlighting in javascript doesn't work
In one of my solutions in javascripts files the intellisense suddenly stopped working.
All of the features are disabled - ctrl+space doesn't bring the list - like this
I took the print screen from ...
0
votes
1answer
77 views
Regarding vs2012 javascript Intellisense
I have custom javascript code in A.js file,to have intellisense associated with it,I have A.intellise
nse.js file in the same folder as A.js.
Content of A.js:
var test = (typeof test === ...
0
votes
0answers
81 views
Visual studio javascript intellisense for function context
I got visual studio 2012 up and running and I'm using underscore for some of my calculations.
My problem is that when I call _.reduce(data, calculations, memo, context), this will send a context to ...
0
votes
1answer
39 views
is there any more standard way to resume function from jQuery ajax call?
I am trying to write a big project which involves of a lot of code. That's why I want to separate functionalities from different files.
the first file, dataJS, I make an AJAX call to get data from a ...
0
votes
1answer
58 views
What's wrong with this -vsdoc file?
I have a script, retry.js, that contains this:
function retryAjax(load, count, config) {
}
There's a body to it obviously, but it doesn't matter because this problem occurs whether I have the body ...
1
vote
1answer
279 views
Visual Studio Javascript Intellisense - options object
I'd like to get Intellisense support in Visual Studio for the options objects I use in my method calls.
It's common to configure a call to a function in Javascript with a catch-all options object - ...
0
votes
2answers
214 views
Why does JavaScript Intellisense not always work in VS2012?
I'm using VS2012 and building a JavaScript Windows Store App.
For the most part, intellisense works, but for some things it does not. I'm just wondering why. Here are a few examples:
var ...
1
vote
0answers
16 views
jscript IntelliSense is not working and jscript is not listed as a Text Editor language in VS2008
I am using VS2008 Version 3.5 SP1 and IntelliSense is not working for JScript. Also, JScript is not even listed as a language under Tools->Options->Text Editor. Do I need to do something special to ...
6
votes
1answer
370 views
Why do I lose JavaScript intellisense after running my project?
For some reason I lose JavaScript intellisense after debugging my ASP.NET Web Application in Visual Studio 2012.
You can see that when I start, I have full intellisense. In the below picture I get ...
2
votes
1answer
502 views
Visual Studio 2012 JavaScript Intellisense Reference Group Reverts to Implicit (Windows)
I have set up my IDE to show JS Intellisense based on references set in _references.js (http://blog.craigtp.co.uk/post/Javascript-jQuery-Intellisense-in-Visual-Studio-2012.aspx). In doing so, you ...
0
votes
1answer
178 views
Javascript Intellisense Message: JS Intellisense:Internal/(1:0) : Function expected
I am using Visual studio 2010. I have been using it for a long time with out problem. Today I am getting this message every time I try to declare a variable and use it in my javascript files.
...
18
votes
6answers
13k views
Intellisense doesn't work for JS in VS2012
I have a clean, out of the box installation of VS2012 Web Developer Express and for some reason the support for JS (both jQuery, jQuery UI and other libraries) has disappeared. I believe it worked ...
3
votes
1answer
131 views
Is there any JavaScript IDE that's able to show all used objects fields and methods in IntelliSense?
For example, I am using Google Maps API and I want to see all possible fields and methods.
<script type="text/javascript" src="https://www.google.com/jsapi"> </script>
<script ...
1
vote
1answer
78 views
In Javascript, where do I put XML comment on a var so it shows in intellisense?
I am using intellisense successfully in my javascript code for functions, but I don't know how to get it to work for a var or if I should be designing this class differently so I can document it ...
1
vote
0answers
88 views
How can I use Visual Studio intellisense in MVC .aspx views with Javascript libraries?
I have a web MVC app that uses jQuery and quite a lot of other Javascript. All in there are over 20 .js files that are joined and minified in the production app.
We have a mix of brought in ...
1
vote
2answers
197 views
Any workarounds for extreme typing latency using Resharper 6.1 with VS-2010?
I recently installed Resharper 6.1 in VS-2010. I'm using it with a rich web application with an Azure-based C# back end and JQuery and other Javascript libraries on the front end.
I love the way ...
0
votes
1answer
140 views
How can I return razor markup from a helper?
Recently I wrote a javascript library to reduce the amount of copy paste that I was doing. I feel like any time I copy paste code there is an opportunity to make it generic so I can re-use it.
Upon ...
2
votes
2answers
2k views
Enable jQuery Intellisense without referencing local jQuery (or in each file) in VS2010
So I've been looking at jQuery and thought it would be nice to have the vsdoc's for the project I'm working on.
The problem is all of the methods to enable Intellisense for the project are not ...
4
votes
4answers
4k views
Lack of javascript intellisense in Visual Studio 2010
I was delighted to see javascript intellisense in Visual studio 2010 , but I don't see everything inside a particular object through it , in the below code
if (document.images[i].parentNode.tagName ...
3
votes
2answers
360 views
Javascript Intellisense for LOCAL variables in Visual Studio 2010
Is there a way in Visual Studio 2010 to activate Intellisense for LOCAL variables in Javascript files?
There is a MSDN How-To which explains, how to provide Intellisense for function parameters with ...
-2
votes
2answers
184 views
Intellisense while editing JS files
I am creating project in Visual Studio. While editing JS in a HTML file, since we have included the reference to all JQuery files on top, we get intellisense for jquery instances. But, when we are ...
3
votes
1answer
785 views
What free javascript editor can do this kind of intellisense [closed]
I'm looking for this specific type of intellisense workflow.
This is what i used for 10 years working with VB6 IDE.
And this is how i like the intellisense to work...
Say i'm coding a javascript ...
1
vote
0answers
73 views
Any idea on implementing JavaScript code intellisense in Webpage
I am trying to develop a code intellisense support for online source code editor. Anyone having previous experiences please share your experiences on developing this.
0
votes
1answer
461 views
Loading jQuery VSDoc in WebMatrix
Quick question here. I'm trying to get jQuery intellisense in WebMatrix 2 Beta using the CDN. I create a blank .js file with the following line (note WebMatrix 2 Beta uses "file" instead of "path"):
...
2
votes
1answer
2k views
How do I get JavaScript Intellisense from vsdoc file references in WebMatrix 2 Beta?
I copied a JavaScript file over from Visual Studio to a new WebMatrix 2 Beta project only to find out the vsdoc file wasn't being used for JavaScript Intellisense.
/// <reference ...
2
votes
0answers
470 views
Visual Studio dynamic javascript reference intellisense from localhost
It appears that Visual Studio 2010 will skip references that are not formatted http://x.x... I'm trying to use
/// <reference path="http://localhost:12946/js/fancytest" />
to generate ...
0
votes
2answers
240 views
Visual Studio Intellisense for JavaScript when generated from JavaScriptSerializer
What is the correct way for getting JavaScript Intellisense in Visual Studio 2010 when creating a client side object with the JavaScriptSerializer?
For example, I have a class named Record with ...
3
votes
6answers
3k views
javascript intellisense in Visual Studio
How can I get JavaScript IntelliSense in Visual Studio 2008 and in Visual Studio 2010 ?
How can I get jQuery IntelliSense in Visual Studio 2008 and in Visual Studio 2010 ?
If I fail to get the above, ...
0
votes
1answer
899 views
How do I add Jquery VS intellisense reference to my view in VS 2010
I am trying to get Jquery intellisense working in Visual Studio 2010.
I've looked around on StackOverflow and tried adding this to my view:
@{
/// <reference ...
5
votes
1answer
516 views
Generate Javascript intellisense file for a .NET Class
I have a .net control which is intended for use as an ActiveX control in web pages, instantiated thus:
<object id="TheControl" name="TheControl" ...
2
votes
1answer
1k views
Visual Studio 2010 Javascript Intellisense not working properly
There's a little problem with Visual Studio 2010 and Javascript Intellisense.
I've implemented a class with some "Properties" and want to implement a "static" function, which returns a new instance ...
15
votes
2answers
2k views
Referring to JavaScript files in Razor views to get JavaScript Intellisense
Visual Studio offers JavaScript Intellisense. It's smart enough to see that you refer to JavaScript files in your master pages (for example jQuery file) and then offers statement completion in any ...
2
votes
1answer
662 views
VS 2010 Javascript Intellisense not working
I am writing javascript code which uses jQuery and unfortunately when I create a .js file with the following:
/// <reference path="jquery-1.4.2.js" />
(function($) {
// use $ here
...
19
votes
5answers
4k views
How to reference multiple files for javascript IntelliSense in VS2010
I have large solution with about 40 separate javascript files, which are referenced to web page via special js-service. I want to use new IntelliSense features in VS2010, but it is very hard to add ...
2
votes
1answer
204 views
Using Jquery 1.4.2 in an ASP.NET app - Error updating JScript IntelliSense
I am trying to just add a reference to jquery in my ASP.NET project, and get this when I do: "Error updating JScript IntelliSense ... Object doesn't support this property or method."
I read that I ...
0
votes
0answers
49 views
Another Visual Studio 2008 Javascript Intellisense Question
I have a fresh install of Visual Studio 2008. After installing that I installed the TFS plugin. Then VS 2008 Service Pack 1 and finally I installed the vs doc hotfix.
The problem I need help with is ...
0
votes
2answers
649 views
Prototypes Object.extend with multiple objects that contain there own functions
How would I achieve something along the lines of this..
var Persistence = new Lawnchair('name');
Object.extend(Lawnchair.prototype, {
UserDefaults: {
setup: function(callback) {
...
1
vote
2answers
489 views
Prototype / Scriptaculous intellisense in Visual Studio
How do I get intellisense for Prototype / Scriptaculous like we get for jQuery in Visual Studio?
2
votes
2answers
385 views
Is it possible to have VS 2008 Javascript Intellisense in a usercontrol?
I have been banging my head against this for a little while now. I just can't seem to get intellisense to work in a ascx user control, but it works fine in a plain old aspx.
Here is a sample aspx ...
2
votes
0answers
283 views
JScript intellisense with ScriptManagerProxy
I've got a problem making my ScriptManagerProxy expose registered scripts.
When I add a ScriptManager, everything works as expected and the scripts are reflected correctly, but whenever I change it to ...
2
votes
2answers
226 views
Hiding privates from Javascript Intellisense
Is it possible to hide certain functions/fields from displaying in javascript intellisense drop down list in Visual Studio 2008? Either by javascript documentaion XML of by naming privates in a ...
5
votes
3answers
924 views
Javascript Intellisense not showing everything
Brainstorming needed. I have a problem with Javascript libraries (jQuery, ExtJS etc.) that don't seem to play well along with Javascript Intellisense built in Visual Studio 2008. They provide certain ...

