[jQuery] Re: Error: $(document).ready is not a function

2007-05-10 Thread Fabyo Guimaraes
or $(function() { }); 2007/5/10, John Resig [EMAIL PROTECTED]: It sounds like Prototype is overwriting jQuery's $ function. If you want to continue using the two libraries together, you'll need to refer to jQuery's $ function as 'jQuery', like so: jQuery(document).ready(function(){ //..

[jQuery] Re: Error: $(document).ready is not a function

2007-05-10 Thread spinnach
that also won't work if prototype overwrote jquery's $ function.. jQuery(function() { }); would work.. dennis. Fabyo Guimaraes wrote: or $(function() { }); 2007/5/10, John Resig [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]: It sounds like Prototype is overwriting jQuery's $

[jQuery] Re: Error: $(document).ready is not a function

2007-05-09 Thread John Resig
It sounds like Prototype is overwriting jQuery's $ function. If you want to continue using the two libraries together, you'll need to refer to jQuery's $ function as 'jQuery', like so: jQuery(document).ready(function(){ //.. }); More information about this setup can be found here:

[jQuery] Re: Error: $(document).ready is not a function

2007-05-09 Thread [EMAIL PROTECTED]
That sounds very much like the problem, thanks. ilu. On May 9, 11:16 pm, John Resig [EMAIL PROTECTED] wrote: It sounds like Prototype is overwriting jQuery's $ function. If you want to continue using the two libraries together, you'll need to refer to jQuery's $ function as 'jQuery', like so: