Re: [jQuery] Re: $ is not a function

2009-11-10 Thread waseem sabjee
Yeah - it takes many days of headaches to make the rest of the days a little easier :) On Tue, Nov 10, 2009 at 3:45 PM, tvidal wrote: > SO MANY THANKS !!! > I just remove noConflict in magnify script (original one) and > everything works !! > > So many thanks again ! I don't know since how many

[jQuery] Re: $ is not a function

2009-11-10 Thread tvidal
SO MANY THANKS !!! I just remove noConflict in magnify script (original one) and everything works !! So many thanks again ! I don't know since how many hours/days I'm working on !! All the best Thomas On 10 nov, 14:31, waseem sabjee wrote: > I have just cheked your error page and my script wor

Re: [jQuery] Re: $ is not a function

2009-11-10 Thread waseem sabjee
I have just cheked your error page and my script worked out as expected. within 0.5 seconds all the html fades out. this is on firefox 3.5 however i did note 2 errors which are as you stated I also noted you are using quite a lot of scripts on your page. and your scripts are not defined in your

[jQuery] Re: $ is not a function

2009-11-10 Thread tvidal
Dear sabjee I tried : var $toto = jQuery.noConflict(); $toto(function() { $toto("body").animate({ opacity:0}, 500); }) And I have the same error and one more : $toto(function () {$toto ("body").animate({opacity: 0}, 500);}) is not a function Do I need to put the function into the main fancy func

[jQuery] Re: is not a function

2008-04-09 Thread hl
Thanks! That worked like a charm and will help me in the future. I appreciate your help very much and I love your listen plugin! On Apr 8, 6:25 pm, Ariel Flesler <[EMAIL PROTECTED]> wrote: > The problem is that your 'this' changed. > > See: >   $j.getJSON( ..., function(){ >       //the this in h

[jQuery] Re: is not a function

2008-04-08 Thread Ariel Flesler
The problem is that your 'this' changed. See: $j.getJSON( ..., function(){ //the this in here, is not the same as in the code before the getJSON. }); You need to do: var self = this; before calling getJSON, and then, inside this function, use self instead of this. You can name 'self

[jQuery] Re: $ is not a function

2007-10-11 Thread Andy Matthews
@googlegroups.com Subject: [jQuery] Re: $ is not a function There are those who say that "$ is not a function" almost always occurs from the path to the jQuery core file being incorrect. ;) Maybe there is a subtle spelling mistake in the HTML that links to your new version of jQuery? Some

[jQuery] Re: $ is not a function

2007-10-10 Thread Joel Birch
There are those who say that "$ is not a function" almost always occurs from the path to the jQuery core file being incorrect. ;) Maybe there is a subtle spelling mistake in the HTML that links to your new version of jQuery? Something like "jquery.1.2.1.js" instead of "jquery-1.2.1.js"? Quintruple