On Mar 18, 5:13 am, anentropic <[email protected]> wrote: > I am on FF3.6 OSX with Firebug 1.6 (it updated me just now, same > problem in previous 1.5.x version) > > Working on some code I am getting an error with no line number: > uncaught exception: Syntax error, unrecognized expression: #[object > Object] > > I'd love to point you to the code responsible but it's on the admin > side of a site and hard to pull out. The hash char suggests to me I > have generated a dodgy jQuery selector string somewhere.
jQuery uses an exotic mechanism for injecting Javascript into Web pages that Firefox's JS debug infrastructure does not support. That's why you get no line number and why Firebug may not be able to help you. You can try Console > Break on all errors. http://getfirebug.com/doc/breakpoints/demo.html#errors jjb > > My question is not so much about my code, which would be impossible > for anyone to help with given the situation... but can anyone offer > advice about why there is no line number with the error? And where to > look for the offending code? -- You received this message because you are subscribed to the Google Groups "Firebug" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/firebug?hl=en.
