[jQuery] Re: firebug displays "jQuery is not defined" on page load

2007-06-08 Thread GianCarloMing
Hi Mike, i've made some test with the uncompressed version and locally i could not recreate the error. For sure it is a firebug bug. However i'll put online a page with the uncopmpressed verion of jquery (i suppose it is enough one page alone, the one you land by clicking on the prjcts list) GC

[jQuery] Re: firebug displays "jQuery is not defined" on page load

2007-06-06 Thread Mike Alsup
I think that's a firebug problem, but can you try it without the packed version of jQuery so we can get a better look? Mike On 6/6/07, GianCarloMing <[EMAIL PROTECTED]> wrote: Hi all. I've made a little website for some friends and, on that specific page http://www.modostudio.net/projects.ht

[jQuery] Re: firebug displays "jQuery is not defined" on page load

2007-06-06 Thread Sean Catchpole
I have a feeling the problem is with this code: /* highlight TR */ 25 $("#prj tr").mouseover(function(){ 26 $(this).addClass("over"); 27 }) 28 .mouseout(function(){ 29 $(this).removeClass("over"); 30 } 31 ); Try taking that out or changing it this: $("prj tr").hover( function(){ $(this).addClass