here's your exact HTML with Intellisense working just fine for me http://i42.tinypic.com/2mdjo9e.jpg
I'd take a guess you didn't install something correctly (and just to note, i am also on Windows 7 RC, so it's not that) On Jun 1, 9:48 am, Kris-I <kris.i....@gmail.com> wrote: > Hello, > > I'm running Visual Studio 2008 SP1 on Windows 7 RC, I installed the > KB958502, get the files jquery-1.3.2-vsdoc2.js and jquery-1.3.2.js > placed in the root (but I tried other places) with the code below ... > no intelisense . > > Do you have an idea why ? > > Thanks, > > <%@ Page Language="C#" AutoEventWireup="true" > CodeBehind="Default.aspx.cs" Inherits="jQueryTest._Default" %> > > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > > <html xmlns="http://www.w3.org/1999/xhtml" > > <head runat="server"> > > <title>Follow me!</title> > <script type="text/javascript" src="jquery-1.3.2.js"></script> > > <script type="text/javascript"> > $(function(){ > $("<p>Hi there!</p>").insertAfter("#followMe"); > }); > </script> > > </head> > <body> > <form id="form1" runat="server"> > <div> > <p id="followMe">Follow me!</p> > </div> > </form> > </body> > </html>