jquery vs mootools conflict solution  [ 774 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));
#sidebar a { color:#fff; } #sidebar ul ul li { color: #DEF585; } #sidebar h2 { color: #fff; } #sidebar ul p, #sidebar ul select { color: #BEDDBE; } #backfly { background: url(images/golfBallWallPaper.jpg) left bottom fixed repeat-x #65a51d; }