[jQuery] undo jquery.noConflict
I am running multiple libraries with the $(). There has been already
alot of jQuery code using $() that we can't change. There is only 1
js include that is using the $() as another library prototype. Is
there a way to temporarily turn off the $() notation for jquery?
basically:
$j=jQuery.noConflict()
//my code using prototype or other lib
$ = jQuery.noConflict() //note, going back to the normal $ notation
for jQuery
Thanks
Alex