user366312
user366312

Reputation: 17006

JavaScript libraries along with Visual Studio

Apart from jQuery, which other JavaScript libraries support Visual Studio2005/2008 intellisense integration?

Upvotes: 0

Views: 149

Answers (4)

James
James

Reputation: 82136

I am pretty sure it will only be jQuery (as a library) at the moment. Microsoft have teamed up with the jQuery team as they will be looking to integrate it into the ASP.NET AJAX Control Toolkit and to implement new Ajax server-side helper methods for ASP.NET MVC Framework.

Upvotes: 1

Brother Erryn
Brother Erryn

Reputation: 841

Visual Studio 2008 supports JScript intellisense for anything that has a vsdoc.

See this link for details.

Upvotes: 1

Paul
Paul

Reputation: 6238

Open the jquery-1.3.2-vsdoc.js file and take a look at the code comments. The Intellisense comes from those markup comments, which many libraries do not supply.

Upvotes: 1

Dave Swersky
Dave Swersky

Reputation: 34820

Any javascript library will work with Visual Studio. If by "integration" you mean "Intellisense", only 2008 supports javascript Intellisense. Beyond that there isn't much interaction between javascript and VS.

Upvotes: 1

Related Questions