I have a third party script that is including jquery (which causes things to break). I am using 1.6 version and the external script is using an older version.
How can I force that only one version of jquery is loaded and it is the version I have on the page not the one loaded externally?
This is actually pretty easy to do, using jquery.noConfict();
You can then have functions use the $() namespace as so:
There is a more detailed example and a few extra tips on this page.