tags:

views:

276

answers:

3

I've created a website that used to work fine. But now Firebug throws me an error while loading:

Break on Error - d is undefined (in jquery, gets loade from the google CDN)

if i turn off firebug and reload the page everything works just fine.

the site is now at http://www.optiekmeulemeester.be/test and I wanna hear if other get the same error and what can I do about it?

thanks in advance

A: 

I'm not getting any error, but I have had that same errand message popup before. It's never a real error, my guess is it's a bug in firebug. Oh the irony.

Whit
very annoying :) i thought it was a bug too but its for weeks now that i'm getting it and really works on my nerves
Dante
A: 

That's because you're using a breakpoint inside of an ajax call, without stop it before to do the call, try using 2 breakpoints, 1 inside, and 1 BEFORE to use the ajax call, and in that way it will work.

It's a firebug bug.

NicolasT
Actually i haven't set any breakpoints. You mean the red dot before the line of code so it will interrupt there?? None set here.
Dante
Anyway, try to interrupt before to do the Ajax call, it may help you...
NicolasT
+1  A: 

If you think this is a firebug bug, then what is the issue number?

http://code.google.com/p/fbug/issues/list

johnjbarton
Ok I looked at your example page, you are running minimize jquery code, so there is no hope of finding what 'd' means. You need to run with out minimized code to debug it.If you don't care about the error message, turn off Break on error. Either click on the [||] pause button in the Console panel or use Firebug > Firebug Icon Menu > Options > ResetAllOptions.
johnjbarton
thanks, i don't get the error anymore thanks to resetting the option. My bad i suppose.
Dante