Sorry but I don't understand the documentation about radscriptmanager
My question is
I have a page that usually load jquery.js from my site
now I would like to use radScriptmanager with the code below :
and all is ok
but why I have to inlcude the link to jquery.js in the head section of the page ?
( some like <script src="/js/jquery-1.6.2.min.js" type="text/javascript"></script> )
if telerik use jquery - why this is not usable from all the code in the page?
I test it with this simple script
if (jQuery) {
alert('jQuery is loaded!');
}
If I don't inlcude jquery in the head section the alert don't fire
thanks in advance
ciao
My question is
I have a page that usually load jquery.js from my site
now I would like to use radScriptmanager with the code below :
and all is ok
but why I have to inlcude the link to jquery.js in the head section of the page ?
( some like <script src="/js/jquery-1.6.2.min.js" type="text/javascript"></script> )
if telerik use jquery - why this is not usable from all the code in the page?
I test it with this simple script
if (jQuery) {
alert('jQuery is loaded!');
}
If I don't inlcude jquery in the head section the alert don't fire
thanks in advance
ciao
<telerik:RadScriptManager ID="RadScriptManager1" runat="server" EnableCdn="true"> <Groups> <telerik:ScriptReferenceGroup> <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.jQueryPlugins.js" /> </Scripts> </telerik:ScriptReferenceGroup> </Groups> </telerik:RadScriptManager>