According to the documentation here http://www.telerik.com/help/aspnet-ajax/introduction-jquery-intellisense.html I do not need to do anything special to get JQuery intellisense to work on my page.
I have the following in my form:
Whenever I enter $ or $., I do not get any intellisense. I am using Visual Studio 2012. Could that be an issue?
I have the following in my form:
<telerik:RadScriptManager ID="RadScriptManager1" runat="server"> <Scripts> <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js"></asp:ScriptReference> <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js"></asp:ScriptReference> <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js"></asp:ScriptReference> </Scripts> </telerik:RadScriptManager> <script type="text/javascript"> window.$ = $telerik.$; //$("tr.Graph").click(function () { // $(this).nextAll("tr").fadeToggle(500); //}).eq(0).trigger('click'); </script>Whenever I enter $ or $., I do not get any intellisense. I am using Visual Studio 2012. Could that be an issue?