Andy Staines wrote:
> On 2 Mar 2008, at 21:05PM, Ryan Boren wrote:
>> We add one thing to the end:
>>
>> jQuery.noConflict();
>>
>> Maybe the plugin uses $() instead of jQuery().
try something like this:
(function($) {
//your plugin here
})(jQuery)
;o)