I use prototype.js and jquery together and I get this error message
Uncaught TypeError: Object [object Object] has no method '_reverse' (Chrome)
I called jQuery.noConflict before
I’m using jQuery.fn.reverse = [].reverse; to have reverse function on jQuery collection
prototype overwrites the native
Array.protoype.reverseFunction and saves the original inArray.prototype._reverse.This snippet takes account of that
old wrong solution