jquery vs mootools conflict solution [ 1129 views ]
jQuery and MooTools relation has a trouble. Let’s solve this.
1. disable the global alias
jQuery.noConflict();
2. wrap the jQuery code snippets like this
(function($){
// in this struct you can use the $ alias to work with jQuery as earlier
$(document).ready(function(){
...
$(this)...
...
});
}(jQuery));


