I\'m working on an application I received from a client and they\'ve used some telerik web controls. Telerik apparently includes its own version of jquery 1.3.2, while I\'m usin
I did it by telling Telerik not to register his version of jQuery at all It can be done once for the site in _Layout.cshtml file
in head section I am loading needed versions of jQuery scripts manually
then before
@(Html.Telerik().ScriptRegistrar().DefaultGroup(
group => group.Compress(false).Combined(false))
.jQuery(false)
.jQueryValidation(false))