[jQuery] Re: Mootools and Jquery conflict

2008-10-13 Thread Nguyễn Quốc Vinh
@MorningZ I have just had the same problem and it was solved as u help! Thanks in advance! 2008/10/3 MorningZ <[EMAIL PROTECTED]> > > You've got "$j" being used in the last block, but no where do you > define what "$j" is > > so, right after your line > > > > tell the page what "$j" is supposed

[jQuery] Re: Mootools and Jquery conflict

2008-10-03 Thread MorningZ
You've got "$j" being used in the last block, but no where do you define what "$j" is so, right after your line tell the page what "$j" is supposed to mean: var $j = jQuery.noConflict(); All this is clearly laid out right on this Wiki page http://docs.jquery.com/Using_jQuery_with_Other_Lib

[jQuery] Re: mootools and jquery conflict....

2008-09-28 Thread Gurpreet
can also try this. (function($) { $( document ).ready( function () { $( '#call' ).scrollFollow( { container: 'wrap' } ); } ); })(jQuery); jQuery.noConflict(); On Sep 12, 3:35 am, Mike Alsup <[EMAIL PROTECTED]> wrote: > >   $( document ).ready( function () { > >    $( '

[jQuery] Re: mootools and jquery conflict....

2008-09-28 Thread Gurpreet
can also try this. $( document ).ready( function () { $( '#call' ).scrollFollow( { container: 'wrap' } ); } ); })(jQuery); jQuery.noConflict();

[jQuery] Re: mootools and jquery conflict....

2008-09-11 Thread Mike Alsup
>   $( document ).ready( function () { >    $( '#call' ).scrollFollow( { >     container: 'wrap' >    } ); >   } ); change the scrollFollow call to: jQuery('#call').scrollFollow(