i got plugins using 3 different versions of jQuery on my site “1.7.1” “1.5.2” and “1.3.2”. Got first 2 on my main page and theyre working just fine, but when i enter a site that uses the third one aswell, addons based on 1.7.1 and 1.5.2 stop working.
I did try adding jq132 = jQuery.noConflict(true); script, and then switching every $ in third app to jq132, but that doesnt seem to work. Any tips?
EDIT: i managed to cut out 1.5.2 and 1.3.2 versions, thanks for tips
You could try editing each version of jQuery to change the namespace variable for each version if you really need all three versions (which you really don’t, btw).
and then in your $(document).ready():
and your
$would be replaced with$132for your 1.3.2 version and so on.Btw, this is a really bad idea.