I've looked around for answers to this problem, but I couldn't find anything related.
This is very stupid problem but I have no idea how to resolve it.
I have a page with a slideshow for example, I open Firebug to inspect the HTML, but when I'm using the HTML inspector panel it then 'jumps' to the section of the slideshow (since a new slide just loaded), I then have to scroll back to where I was, but then Firebug jumps back again when a new slide is loaded.
The only two workarounds I have right now are: Make the Firebug bottom pannel larger or open it in a new window and maximize it. Or r开发者_如何转开发ight click on the slideshow HTML element and delete it from the page.
Is there a way to have Firebug not jump around the HTML inspector panel while having a script refresh a section of the page?
Thanks.
There's a simpler solution: use the firebug's Html dropdown menu.
Click on js tab and left there is yellow button , just hit ,it will pause script and hance you can inspect
here in step
- click on script tab (console HTML CSS Script)
- click yellow button left bottom
- click on html,console or what every you want and then click to inspectyou want and then click to inspect
EDIT:
THE solution to this problem is:
- In the HTML tab, click on the arrow to bring the drop down out.
- Uncheck "Scroll Changes Into View".
FYI, this is the solution in Firebug 1.7.1.
Thanks to ulu for this solution.
--
Although crossed out, I'm leaving the former solution here for reference:
The exact solution for this problem is:
- Go to about:config
- Look for extensions.firebug.scrollToMutations
- Double click on it, the Value should say false
That's it, when viewing the HTML code and a change in the DOM happens, the view won't jump to that change :)
Here's more information about Firebug's parameters: http://getfirebug.com/wiki/index.php/HTML_Panel
Thanks to noomz for pointing me in the right direction for this solution.
Go to firefox config page by enter url about:config
,find this values "extensions.firebug.expandMutations
" and change it to false
精彩评论