By the way, I just βfixedβ the same problem with my Firebug. I went through the reinstallation, reset, etc., and nothing helped.
After some investigation, it came down to the contents of the page I was debugging. I have a function called by jQuery when the page load finishes:
<script> $(onPageLoad); </script>
Now this function asks the user to enter their name using the prompt () function. It turned out that Firebug does not activate the script panel until the prompt () function is closed. This is not a problem when you open only one page, since you just close the dialog and everything works. However, this is a problem when you have two identical pages open. The script panel does not work until you close both requests.
Roman guralnik
source share