AFAIK the vsdoc.js that ships with VS is only for it's autocomplete feature. Use the latest release from here instead: http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js
On Jun 17, 7:09 am, Ofer Hashimshony <hasho...@gmail.com> wrote: > Hey people I have a bug in Jquert intellisense > When I add the reference to the intellisense file "(jquery-1.3.2- > vsdoc.js)" It worked > But everything when I add > [code]<script type="text/javascript" src="jquery-1.3.2.js"></script> [/ > code] > > To the page the Jquert intellisense Disappeared . What to do? > > [code] > > <script type="text/javascript" src="jquery-1.3.2.js"></script> > <!-- Enough to delete this: "jquery-1.3.2.js" and the intellisense > returns to work --> > > <asp:PlaceHolder runat="server" visible="false"> > <script type="text/javascript" src="jquery-1.3.2-vsdoc2.js"></script> > </asp:PlaceHolder> > > <script type="text/javascript"> > $(document).ready(function(){ > $("#btn1").toggle(function(){ > alert("Hay 1");},function(){ > alert("Hay 2"); > }); > }); > > </script> > > [/code] > I will be happy to receive help on this topic