If you have service reference (e.g. to an AJAX Enabled WCF Service) in your ScriptManager (or ToolkitScriptManager):
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
<Services>
<asp:ServiceReference Path="~/MotoService.svc" />
</Services>
</asp:ToolkitScriptManager>
and your are using an external JavaScript file you can enable JavaScript intellisense by adding the following 2 lines to the top of your .js (replacing ~/MotoService.svc with the path to your own service):
/// <reference name="MicrosoftAjax.js" />
/// <reference path="~/MotoService.svc" />
SHARE:
This can happen, sometimes fixed by re-installing VS or installing VS 2008 SP1. In this case it seems Javascript breakpoints do not seem to work in Visual Studio 2008 when Silverlight debugging is enabled, if you un-check the Silverlight option in the debuggers section, the JavaScript breakpoint will now be hit. Not sure if it's by design or a bug...
SHARE:
In code behind for WPF/Silverlight in Visual Studio you can use the key combination snippet (assuming defaults) ctrl-k then x then NetFX30 then either choose either a DependencyProperty or attached DependencyProperty.
SHARE:
To enable Intellisense for jQuery in VS2008:
http://weblogs.asp.net/scottgu/archive/2008/11/21/jquery-intellisense-in-vs-2008.aspx
Once you add the -vsdoc.js to your project you might have to restart VS and re-open your project for Intellisense to start working...
SHARE: