Check out here to watch some of the available videos of sessions from the PDC.
https://sessions.microsoftpdc.com/public/timeline.aspx
JQuery
There is a new jquery file download that will give you intellisense in Visual Studio 2008. You can download it from here:
http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.2.6-vsdoc.js
Now lets figure out how to get it to work. I did not see instructions on the download page.
NOTE: It seems that if the file exists in the same directory, intellisense will work. I excluded them from my project and still was able to use intellisense.
This is how I did it. I added the vsdoc file to the js folder. I added the jquery java script file to the project. Then I added the
/// <reference path="jquery-1.2.6-vsdoc.js" />
to my external java script file. The articles posted below also post information how to do it inline.
That was not so hard. Here is some interesting reading on it:
http://blogs.msdn.com/webdevtools/archive/2008/10/28/rich-intellisense-for-jquery.aspx
http://blogs.msdn.com/webdevtools/archive/2007/11/06/jscript-intellisense-a-reference-for-the-reference-tag.aspx
Happy Coding,
Bill