On Dec 9, 8:33 pm, "i...@atlantagraphicdesign.net"
<i...@atlantagraphicdesign.net> wrote:
> can someone help with the nocoflict function.

Did you read this document?:

    http://docs.jquery.com/Using_jQuery_with_Other_Libraries

I'd suggest that the simplest thing would be to put prototype first,
then jQuery, followed by a script that calls

    jQuery.noConflict();
    // now $ refers to the Prototype function.

and put any custom code that uses jQuery in either a block that looks
like this:

    $(document).ready(function($) {
        // here $ refers to jQuery
    });

or in one like this:

    (function($) {
        // here $ refers to jQuery
    })(jQuery);

But there are many other techniques listed in that document.

Cheers,

  -- Scott

Reply via email to