So this question isn\'t as crazy as it might sound at first. I\'m developing a piece of javascript code to drop into my client\'s pages. What I\'m worried about is if they
You could use
(function($) { })(dom);
To wrap you calls.
This maps dom to $ for just the code within replacing any external $ definition.
But I am not sure if this works with 2 different jQuery, maybe jQuery cannot coexist with other jQuery versions.