jQuery.noConflict
will reset the $
variable so it's no longer an alias of jQuery
. This is mostly used for mixing versions of jQuery, particularly for out-dated plugins <script type="text/javascript">
var myJQ = jQuery.noConflict(true); </script>
Now, myJQ variable can be used as follows,
myJQ(document).ready(function() {
});
});