If you take a look at the last part of http://docs.jquery.com/Using_jQuery_with_Other_Libraries you'll see a solution.
Basically wrap your jQuery code in one of these two: (function($) { /* some code that uses $ */ })(jQuery) jQuery(function($) { /* some code that uses $. run on document.ready */ }); Karl Rudd On Fri, Dec 12, 2008 at 6:06 PM, ♫ cheskonov <amardeep.sar...@gmail.com> wrote: > > This could sound a stupid question but here is my problem : > is there a way to use $ sign while working with jQuery and Prototype > together? > it seems that using both causes a conflict with the "$" sign and if i > use jQuery.noConflict(true); i need to replace all $ sign with > jQuery . is there a way i can avoid this