jQuery 1.4.3+ (for example 1.5) - problems

Permalink
I want to use special cssHooks from jQuery, so i need a higher jQuery Version as installed (1.4.2).

But when i replace /concrete/js/jquery.js with the newer one and add an extra sizzle.js (because of actual use in the jquery.js file) the functionality become buggy.

when i use jQuery 1.5 i could click "edit page" and make the settings, but when i want to save the modal panel, the loader is shown but the panel want hide anymore.
also the "save and exit"-button for the site-changes want work correct.

what can i do?

i need cssHooks for special box-shadow and border-radius animations ^^

 
Ale replied on at Permalink Reply
You could try using jQuery.noConflict but it would require loading the newer version first as following:

<script type='text/javascript' src='js/jquery_1.5.js'></script>  
<script type='text/javascript'>  
  var jq = jQuery.noConflict();  
</script>  
<script type='text/javascript' src='js/jquery_1.4.2.js'></script>


After loading you could use the newer version like this:
jq("#yourElement").hide(); //or whatever you need


All other code would use the older version with $ and would be compatible. The problem is that you may need to do some core file overrides to get the newer version to load and set the noConflict before the old one loads.
alexandragrein replied on at Permalink Reply
Ok thank you, i know what you mean.

So i'm going to use jquery 1.5 in my template with noConflict ;)
hhuynh replied on at Permalink Reply
Can you post how you did the overrides? Or how you did the noConflict() please?