Closed GoogleCodeExporter closed 9 years ago
Hi,
please, do not use jQuery.noConflict() at all.
This may break any other plugin on your site.
It's sufficiently safe to just use jQuery like this (note that I don't use "$"
at all):
jQuery(document).ready(function() {
someFunction();
});
(function(jQuery) {
someFunction = function() {
jQuery("someselector").someMethod();
}
})(jQuery);
Cheers,
Arne
Original comment by arne.fra...@gmail.com
on 3 Jun 2011 at 9:50
noConflict is removed
Original comment by chris.gossmann@googlemail.com
on 1 Sep 2011 at 2:41
Original issue reported on code.google.com by
zenji...@gmail.com
on 15 Apr 2011 at 8:43