Is there a way turn off jQuery.noConflict
in WordPress? I don't mean loading an alternative version of jQuery or changing the loading method ie:
jQuery(document).ready(function( $ ) { ... });
or
(function($) { ... })( jQuery );
I mean is there a way to just turn off noConflict
mode for the version of jQuery bundled with WordPress?
Like would setting jQuery.noConflict(false)
work? If so, where would you set it?