This question is locked. New answers and comments are not allowed.
I'm trying to get JQuery working.
I am using RadControls for ASP.NET AJAX Q3 2009 NET35 and I have followed the instructions at http://www.telerik.com/help/aspnet-ajax/using-jquery.html but it seems that I have missed something because I keep getting 'Microsoft JScript runtime error: '$telerik' is undefined' when it gets to window.$ = $telerik.$
What else am I missing?
Thanks.
I am using RadControls for ASP.NET AJAX Q3 2009 NET35 and I have followed the instructions at http://www.telerik.com/help/aspnet-ajax/using-jquery.html but it seems that I have missed something because I keep getting 'Microsoft JScript runtime error: '$telerik' is undefined' when it gets to window.$ = $telerik.$
What else am I missing?
Thanks.
| <script type="text/javascript"> |
| window.$ = $telerik.$; |
| $(document).ready(function() { |
| alert("start"); |
| }); |
| $(function() { |
| $('#tbPropAcqPropertyTax').calculator({ |
| showOn: 'focus', buttonImageOnly: true, buttonImage: 'images/Calculator.gif' |
| })($telerik.$); |
| }); |
| </script> |
| <telerik:RadScriptManager runat="server" ID="ScriptManager1"> |
| <Scripts> |
| <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" /> |
| <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" /> |
| <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" /> |
| <asp:ScriptReference Path="JS/jquery.calculator.js" /> |
| </Scripts> |
| </telerik:RadScriptManager> |