I just cannot work this out. My god it\'s making my brain hurt, so I turn to you, the good people of the internet.
I\'ve been staring at the documentation for the jQ
jQuery no-conflict is an option given by jQuery team to overcome the conflicts between the different JS frameworks or libraries. We are replacing the $ to a new variable and assigning to jQuery when we use the noconflict method.
We can use the $ sign like below also, it not create any conflict also
$.noConflict();
jQuery(document).ready(function($) {
// Code that uses jQuery's $ can follow here.
});