I also had this problem, on one of my sites, each time I
open a pop up
window, immediately the error console popped up also.
I spent a lot of time looking for a solution for this
problem, until
discovered that it was not a problem, it was my bug.
Pop up window was opened using a hyperlink, like this <a
href='javascript:' onclick='OpenPopUp();'>...</a>
Note the 'javascript:' part, that is the whole problem
The link works in IE without side effect, but in Firefox, if
you write
"javascript:" in the address bar and press Enter,
it will open the
Error console, and that is normal
I just fixed the above mentioned hyperlink to be like this:
<a href='javascript:void(0)'
onclick='OpenPopUp();'>...</a>
And now it works fine!
Not pretend that to be best practice, it is better than
before
Hope that would be helpful to somebody
On Aug 30, 6:54 pm, manu <SaurabhSar... gmail.com> wrote:
> Hi everybody,
> I have developed an web application which uses AJAX. I
have used AJAX
> POST method and currently using Firefox ver. 2.0.0.6.
What is worrying
> me, is the error console which pops up every time
automatically, when
> I call another page through AJAX. Error Console shows
only warnings
> and all the pages are working well.
> Should Error Console pop up by itself ?
> Please help me as it creates a lot of confusion in
customer's mind.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "Firefox Users" group.
To post to this group, send email to Firefox-Users googlegroups.com
To unsubscribe from this group, send email to
Firefox-Users-unsubscribe googlegroups.com
For more options, visit this group at http://groups.google.com.au/group/Firefox-Users?hl=en
-~----------~----~----~----~------~----~------~--~---
|