The correct place for the jQuery.noConflict() call would be after mootools, after jQuery (which you've got in the right order - mootools first, then jQuery), and before any other javascript code that makes use of either. So after line 533, before line 536.
But you also need to fix lines 536 to 540 by either substituting jQuery for the $, or wrapping them in this pattern: (function($){ // code with the jQuery $ can safely go in here })(jQuery); - Richard On Tue, Sep 16, 2008 at 5:21 PM, MauiMan2 <[EMAIL PROTECTED]> wrote: > > Just wondering how I can resolve the jQuery/mootools conflict on: > http://www.tccnotary.com/contractorform.php > > I have tried moving around the "jQuery.noConflict();" script to > different spots within the code but to no avail. >