How to make prototype.js and jquery.js work together….? Answer is in fact very simple and indeed jquery did it all for you already following is the code snippet on how to do it: <script src=”.../prototype.js></script> <script src=”.../jquery.js></script> <script>jQuery.noConflict();</script> and replace your $ of jQuery with jQuery that it guys you are good to go :)
My Opinion.