Go Back   Velocity Reviews > Newsgroups > Firefox
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read


Reply

Firefox - How do I go about disabling the error console in firefox?

 
Thread Tools Search this Thread
Old 02-11-2008, 04:27 PM   #1
Ross M. Greenberg
 
Posts: n/a
Default How do I go about disabling the error console in firefox?

How do I go about disabling the error console in Firefox?
  Reply With Quote
Old 02-11-2008, 08:06 PM   #2
Peter Potamus the Purple Hippo
 
Posts: n/a
Default Re: How do I go about disabling the error console in firefox?

Ross M. Greenberg wrote:
> How do I go about disabling the error console in Firefox?


you really can't disable it, but, you can remove it from
your view. Put the following script in the userChrome.css file:

menuitem[label="Error Console"] {display: none !important;}

--
*IMPORTANT*: Sorry folks, but I cannot provide email help!!!!

Warning: Private emails sent to me may become public

Peter Potamus & His Magic Flying Balloon:
http://www.toonopedia.com/potamus.htm
  Reply With Quote
Old 02-12-2008, 03:21 AM   #3
dillinger
 
Posts: n/a
Default Re: How do I go about disabling the error console in firefox?

Ross M. Greenberg wrote:
> How do I go about disabling the error console in Firefox?


Why would you want to do that?
Anyway, to remove it from the menu add

/* Disable the error console */
#javascriptConsole {display: none !important}

to your userChrome.css

Michel
  Reply With Quote
Old 02-12-2008, 07:45 PM   #4
Ross M. Greenberg
 
Posts: n/a
Default Re: How do I go about disabling the error console in firefox?

"dillinger" <> wrote in message news:hej785-...
> Ross M. Greenberg wrote:
>> How do I go about disabling the error console in Firefox?

>
> Why would you want to do that?
> Anyway, to remove it from the menu add
>
> /* Disable the error console */
> #javascriptConsole {display: none !important}
>
> to your userChrome.css
>
> Michel



try running this: http://ramnet.net/dom3.htm and add a row/column or so... the error console pops up even though it does not running the same ..htm in IE 7.
  Reply With Quote
Old 02-13-2008, 04:09 AM   #5
dillinger
 
Posts: n/a
Default Re: How do I go about disabling the error console in firefox?

Ross M. Greenberg wrote:
> "dillinger" <> wrote in message news:hej785-...
>> Ross M. Greenberg wrote:
>>> How do I go about disabling the error console in Firefox?

>> Why would you want to do that?
>> Anyway, to remove it from the menu add
>>
>> /* Disable the error console */
>> #javascriptConsole {display: none !important}
>>
>> to your userChrome.css
>>
>> Michel

>
>
> try running this: http://ramnet.net/dom3.htm and add a row/column or so... the error console pops up even though it does not running the same .htm in IE 7.


I see, those links are broken, malformed, whatever you want to call it.
<a href="javascript:" onclick="create_row();">create row</a> should be:
<a href="javascript:create_row();">create row</a> etc.
"javascript:" (no quotes) starts the error console, try typing it in the
url bar, I don't think it should be possible to start it from a web
page, it may even be a security problem.
I don't know of another way to stop it than by turning of javascript,
which kind of defeats the purpose.
Fwiw, it doesn't happen on Minefield (Firefox 3), so it may (will?) be
fixed in the future.

Michel
  Reply With Quote
Old 02-14-2008, 11:46 AM   #6
Ross M. Greenberg
 
Posts: n/a
Default Re: How do I go about disabling the error console in firefox?

"dillinger" <> wrote in message news:ulaa85-...
> Ross M. Greenberg wrote:
>> "dillinger" <> wrote in message news:hej785-...
>>> Ross M. Greenberg wrote:
>>>> How do I go about disabling the error console in Firefox?
>>> Why would you want to do that?
>>> Anyway, to remove it from the menu add
>>>
>>> /* Disable the error console */
>>> #javascriptConsole {display: none !important}
>>>
>>> to your userChrome.css
>>>
>>> Michel

>>
>>
>> try running this: http://ramnet.net/dom3.htm and add a row/column or so... the error console pops up even though it does not running the same ..htm in IE 7.

>
> I see, those links are broken, malformed, whatever you want to call it.
> <a href="javascript:" onclick="create_row();">create row</a> should be:
> <a href="javascript:create_row();">create row</a> etc.
> "javascript:" (no quotes) starts the error console, try typing it in the
> url bar, I don't think it should be possible to start it from a web
> page, it may even be a security problem.
> I don't know of another way to stop it than by turning of javascript,
> which kind of defeats the purpose.
> Fwiw, it doesn't happen on Minefield (Firefox 3), so it may (will?) be
> fixed in the future.
>
> Michel


\

And it works in Opera, too.....just not in FF or IE!!


  Reply With Quote
Old 02-17-2008, 09:44 PM   #7
Ross M. Greenberg
 
Posts: n/a
Default Re: How do I go about disabling the error console in firefox?

>> try running this: http://ramnet.net/dom3.htm and add a row/column or so... the >>error console pops up even though it does not running the same .htm in IE 7.
>
> I see, those links are broken, malformed, whatever you want to call it.
> <a href="javascript:" onclick="create_row();">create row</a> should be:
> <a href="javascript:create_row();">create row</a> etc.
> "javascript:" (no quotes) starts the error console, try typing it in the
>



Following your advice, I modified the links as you indicated. Now it appears to function properly and the error console is no longer showing up.

In Firefox and Opera. Not, however, in Internet Explorer 7.

Any idea why not?

Thanks!

Ross

  Reply With Quote
Old 02-20-2008, 04:24 PM   #8
dillinger
 
Posts: n/a
Default Re: How do I go about disabling the error console in firefox?

Ross M. Greenberg wrote:
>>> try running this: http://ramnet.net/dom3.htm and add a row/column or so... the >>error console pops up even though it does not running the same .htm in IE 7.

>> I see, those links are broken, malformed, whatever you want to call it.
>> <a href="javascript:" onclick="create_row();">create row</a> should be:
>> <a href="javascript:create_row();">create row</a> etc.
>> "javascript:" (no quotes) starts the error console, try typing it in the
>>

>
>
> Following your advice, I modified the links as you indicated. Now it appears to function properly and the error console is no longer showing up.
>
> In Firefox and Opera. Not, however, in Internet Explorer 7.
>
> Any idea why not?
>
> Thanks!
>
> Ross
>


IE gives you an error:
Line: 81
Char: 3
Error: Object doesn't support this property or method

IE apparently does not support addEventListener,
it uses attachEvent instead.
http://www.quirksmode.org/js/events_advanced.html
gives a more detailed explanation.

What you can do about it is rewrite the page to act differently upon
detecting different browsers.

Michel
  Reply With Quote
Old 10-17-2008, 08:38 PM   #9
willeifler
Junior Member
 
Join Date: Oct 2008
Posts: 1
Lightbulb Getting rid of error console

I've been trying to get rid of the error console popping up all the time for some time now - it would open every time I opened Firefox, considerably slowing down startup. I disabled all of my add-ons and re-enabled them until I came upon the problem. I found out that I had two different mouse-gestures add-ons installed, causing a conflict which made it open all the time. I'd recommend disabling all of your addons and re-enabling them one by one just to check if that's the problem.
willeifler is offline   Reply With Quote
Old 12-02-2008, 04:19 AM   #10
RuzzT
Junior Member
 
Join Date: Dec 2008
Posts: 1
Default Two Gesture Addons Installed

Thanks willeifler. Your fix worked for me.

Both FireGestures and Mouse Gestures Redox addons were installed. I uninstalled FireGestures from the Addon screen and restarted Firefox 3.0
No more annoying Error Console every start up.
Thanks again. It had been annoying me for weeks.
RuzzT is offline   Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
When ever Firefox restarts... it downloads several files to my desktop??? Joe Cool General Help Related Topics 0 03-29-2008 11:41 PM
Firefox Vs. Printmanager Screening software icedogo General Help Related Topics 0 12-07-2007 04:37 PM
calling a firefox within a widget MrShahi Software 0 11-01-2007 10:10 AM
Firefox and my yahoo dick7517 General Help Related Topics 0 07-04-2007 03:57 AM
Microsoft IE7 Vs Mozilla Firefox 2.0 @ BIOS Silverstrand Front Page News 0 10-26-2006 09:23 PM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47