[jQuery] Re: MooTools and jQuery

2009-10-06 Thread Jonathan Sharp
Hi Dennis, We had some issues with jqModal and unfortunately only the minified source is available so we ended up using the jQuery UI dialog component with great success. (Note the filesize listed on the jQuery UI page is for the entire zip file, the library itself is much smaller) http://jqueryu

[jQuery] Re: MooTools and jQuery

2009-10-06 Thread Dennis Madsen
Yes, as I describe I use Joomla CMS where a lot of the functionality is written in Mootools. On 6 Okt., 15:35, Liam Potter wrote: > is there a reason you need both libraries? > > > > Dennis Madsen wrote: > > I'm developing a site in Joomla CMS which use both MooTools and > > jQuery. > > > I've c

[jQuery] Re: MooTools and jQuery

2009-10-06 Thread Liam Potter
is there a reason you need both libraries? Dennis Madsen wrote: I'm developing a site in Joomla CMS which use both MooTools and jQuery. I've created a small, clean page where you can see the problem: http://www.dennismadsen.com/uploads/mootools_jquery/ You can download the source-code from th

[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(

[jQuery] Re: mootools and jquery

2008-08-19 Thread Karen Chan
Thanks for the respond Glen :) Unfortunately the page is not public so I can't show much more - I know it's ridiculous to ask the question I've asked when I can't give much more information :"( I'll take your advise to go through the plugins and see if I get lucky :) Many thanks On Tue, Aug 19,

[jQuery] Re: mootools and jquery

2008-08-19 Thread Karen Chan
Thanks Adwin - your jquery.noConflict() suggestion is certainly a quick solution for it, thanks :) However, I have development team on my back and they've made a decision to not to use any javascript frame work other then jQuery - so I cannot enter their realms... :"( On Tue, Aug 19, 2008 at 4:3

[jQuery] Re: mootools and jquery

2008-08-18 Thread Adwin Wijaya
btw, may i know why you need to convert from mootools to jquery ? you can use jquery.noConflict() so it can work with mootools (beware, some jquery plugins are not working with it) On Aug 18, 6:24 pm, Hoi <[EMAIL PROTECTED]> wrote: > I'm completely new to jquery (and not technical...) and I've

[jQuery] Re: mootools and jquery

2008-08-18 Thread Glen Lipka
Is this page public? Seeing it would help. There are often plugins that can do a bunch of stuff for you with little code. (Im not that technical either, which is why I love plugins) Glen On Mon, Aug 18, 2008 at 4:24 AM, Hoi <[EMAIL PROTECTED]> wrote: > > I'm completely new to jquery (and not