jQuery: How to Avoid Conflicting Versions
var j = jQuery.noConflict();// Do something with jQuery j( "div p" ).hide(); // Do something with another library's $() $( "content" ).style.display = "none";
The code above creates a new alias instead of jQuery called j and while the other library is using the $.