<script src="http://cdn.kendostatic.com/2012.3.1114/js/jquery.min.js"></script>
how canj I ensure Im using the latest version ? (currently v1.9.0)
5 Answers, 1 is accepted
The Kendo UI CDN does not aim to provide the latest jQuery version, but one, which is most compatible with the given Kendo UI version. In the case of 2012.3.1114 (Q3 2012) this is jQuery 1.8.2. If you need another jQuery version, please use a different provider, e.g. a local copy or Google Hosted Libraries.
On a side note, you can easily determine the jQuery version by openin the JS file and seeing the comment at the top of it. Another option is to run
$().jquery
in the browser's Javascript console.
Regards,
Dimo
the Telerik team

As a sidenote, isn't 2012.3.1315 the current release?
Kendo UI doesn't currently support jQuery 1.9. The latter is not backwards compatible with older version of jQuery and was release on the same day as Kendo UI 2012.3.1315.
The general practice of Kendo UI is to ship with a newer version of jQuery only on major releases.
If you you must use jQuery 1.9 you need to include the jQuery migrate plugin. More info can be found here: http://stackoverflow.com/questions/14382884/issues-with-kendoui-and-jquery-1-9-0
Atanas Korchev
the Telerik team

HI
I have a question about jQuery version of ASP.NET MVC Control.
I want to upgrade the jQuery version from 1.x.x to 2.x.x or 3.x.x for ASP.NET MVC Control,
and I have reference the documentation :
JavaScript Prerequisites
http://docs.telerik.com/kendo-ui/intro/installation/prerequisites
Kendo UI 2017.1.118 (R1 2017) 1.12.3 Also compatible with 1.10.x, 2.2.x and 3.1.1
CDN Services
http://docs.telerik.com/kendo-ui/intro/installation/cdn-service
<script src="http://kendo.cdn.telerik.com/2017.2.504/js/jquery.min.js"></script>
<script src="http://kendo.cdn.telerik.com/2017.2.504/js/kendo.all.min.js"></script>
So I can include the jQuery 2.2.x or 3.1.1 for ASP.NET MVC R1 2017 as below ?
or is there have any other official documentation or suggestions ?
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2017.2.504/js/jszip.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2017.2.504/js/kendo.all.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2017.2.504/js/kendo.aspnetmvc.min.js"></script>
Best regards
Chris
Yes, you can use jQuery 2.2.x or 3.1.1 with UI for ASP.NET MVC R1 2017.
Regards,
Dimo
Telerik by Progress