Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Telerik and jquery

Tags:

jquery

telerik

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 using 1.4.1. I'm experiencing some weird javascript issues and I'd like to rule out the older jquery as a source of the problem. Is there a way to tell the Telerik controls not to automatically include the 1.3.2 version of jquery if I've already got jquery on the page elsewhere?

like image 924
Chris Avatar asked Feb 22 '10 22:02

Chris


2 Answers

Try jQuery.noConflict(). Using jQuery with Other Libraries

like image 126
Andras Vass Avatar answered Nov 08 '22 14:11

Andras Vass


I'm not sure whether the approach shown by andreas will help you. As you can read in this article (or here), telerik already does something similar "to avoid compatibility issues with applications which already use (other versions of) jQuery".

like image 37
M4N Avatar answered Nov 08 '22 16:11

M4N