when .noConflict()
is called, a selector like $('')
no longer works for compatibility with other environments such as Prototype. jQuery('')
is being used at this time.
Link: jQuery.noConflict ()
To better illustrate this idea, here is an example obtained from the link:
<script type="text/javascript"> $.noConflict(); jQuery(document).ready(function($) { </script>
source share