Trying to use jQuery & some plugins alongside Prototype/Scriptalicious
in Tapestry

I added noConflict to my scripts using this method:

    jQuery.noConflict();

    (function($) {
            $(function() {

            //my stuff here

            });
    })(jQuery);

But I'm not clear as to whether or not I need to go through each
plugin script adding noConflict() as well. Or if I've just chosen the
wrong technique...

Can anyone clarify?

Thanks


Reply via email to