The other thing you can look into is using Firebug Lite which you can use with IE but requires a change to your JSP to insert its script... more details here: http://www.getfirebug.com/lite.html
On 9/13/07, Matt Cooper <[EMAIL PROTECTED]> wrote: > > The easiest thing might be to see if it reproduces in a very simple "hello > world" page. If the problem reproduces then it might be work verifying that > the .js files listed in the page source do load script as expected (put > those URLs in your browser's address bar). If the problem doesn't reproduce > in the simple case then you may want to narrow down what things on the > failing page could be causing the problem. > > The only tool I am aware of is the Microsoft Visual Studio though maybe > their script editor has some features too. > > On 9/13/07, Bertrand, Shawn R <[EMAIL PROTECTED]> wrote: > > > > The error dialog indeed doesn't appear in Firefox, though would it if > > Firebug wasn't installed? There doesn't appear to be any sort of error when > > running in Firefox – all I see in the Firebug console are POST messages as > > expected. > > > > > > > > I haven't looked at the current 1.0.2 codebase, but does it contain the > > change as outlined by Andrew for this? I guess I'd like to update to it if > > possible, because I can't see our users having to put up with dismissing > > this error. > > > > > > > > Alternately, how might I go about finding the cause of the error message > > in IE? > > > > > > > > Shawn > > > > > > > > > > ------------------------------ > > > > *From:* Adam Winer [mailto:[EMAIL PROTECTED] > > *Sent:* Wednesday, September 12, 2007 2:08 PM > > *To:* MyFaces Discussion > > *Subject:* Re: [Trinidad] "console" is undefined? > > > > > > > > This is indeed an attempt to call the firebug console (if > > > > it exists), and Andrew's totally right that the syntax here > > > > is wrong. FWIW, this should only be called if an error > > > > has occurred, not in ordinary execution, so there's a more > > > > essential problem elsewhere. > > > > > > > > -- Adam > > > > > > > > > > > > On 9/12/07, *Andrew Robinson* <[EMAIL PROTECTED]> wrote: > > > > Yes, I get this all of the time to. I believe console is the firebug > > globally installed window variable (plug-in for firefox) > > > > I think the following code may be more IE friendly: > > > > if (window.console && window.console.error) { > > ... > > } > > > > On 9/12/07, Bertrand, Shawn R <[EMAIL PROTECTED]> > > wrote: > > > > > > > > > > > > > > > I'm getting error generated from the first line of the following > > function in > > > Common1_0_2.js: > > > > > > > > > > > > TrRequestQueue._logError=function(a118) > > > > > > { > > > > > > if(console&&console.error) > > > > > > console.error(arguments); > > > > > > } > > > > > > > > > > > > This is running in IE 6. Is this console object related to the > > Acrobat > > > console window? > > > > > > > > > > > > Thanks, > > > > > > > > > > > > Shawn > > > > > > > > > > > > > >

