How to resolve the $ conflict between jQuery and mooTools?

jquery, mootools

Solution

After making the call to `jQuery.noConflict()` you just need to refer to the jQuery object as `jQuery` instead of `$`. Your code would need to be updated to reflect this:

$(document).ready();

Would become

$.noConflict();
jQuery(document).ready();

Problem

Okay, I have been working for quite some time on a website for a friend.. My coding skills are .. questionable, and I've been having quite a few problems. Currently the jQuery on my site simply stopped working, I could not find the reason, and I have done everything I could to try to get it to work. ( I have followed countless guides all over the internet, for troubleshooting etc. and I still cannot get it to work) Then after looking closely at the errors, using the browser console I've found out that mootools and jQuery are conflicting between `$`. I've been trying to use `jQuery.noConflict()` but I can't seem to figure out how to use it. Could anyone help me? Sincerely yours, Malmoc

Original source