firebug

Does the Web Developer toolbar really have a Save button to save CSS modified in Firebug?

According to this S.O. answer the Firefox Web Developer toolbar has a Save button: However, the answer shows an image of the toolbar which does not show a Save button: I just installed the toolbar to take advantage of this option but I do not see a Save button. Does the Save button exist? ...

Does the Firefox Web Developer Toolbar have an equivalent of Firebug's "Inspect Element" CSS live-debug feature?

To edit CSS, I have to inspect elements in Firebug and then make changes in the Firefox Web Developer toolbar so that I can save the changes out to a separate CSS file. It would be nice if I could forget about Firebug and just use a single tool. Does the Web Developer toolbar have an "Inspect Element" option? I can't seem to find one. ...

Can I view the result of a callback function using console.log() in Firebug?

Using the example below, is it possible to send the result of the callback function to the console, i.e. the value being returned? rows.sort(function(a, b) { if(a.sortKey < b.sortKey) return -sortDirection; if(a.sortKey > b.sortKey) return sortDirection; return 0; }); What would I use as the argument: console.log(?) ...

Firefox extension to alert on missing .js files?

I am porting a Web App to a new environment. Due to changed paths, some references to JavaScript Files () are broken. I know of no way to make Firefox / Firebug / the web developer toolbar to warn on missing JS files, or at least issue an information somewhere. Am I overlooking something? Thanks in advance. ...

jquery and xhr.abort

When aborting an ajax request with the xhr that's passed back from the jQuery.ajax function, firebug shows that it's still trying to load that request. It doesn't block any more requests that are made, but it also doesn't show that it ever completes the request. Is this just a firebug problem? ...

jQuery works in Firefox when Firebug is running, does not work when Firebug is NOT running

I have the following Javascript libraries loaded for my page. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;&lt;/script&gt; <script type="text/javascript" src="http://cdn.jquerytools.org/1.1.2/jquery.tools.min.js"&gt;&lt;/script&gt; <script type="text/javascript" src="./js/jquery...

Seeing duplicate http requests in server logs

Hi, I have started a small django application in my machine. When i have seen the request logs I figured out that It is actually logging the same requests twice. After a little investigation, I disabled all of my add-ons in my browser and tried. To my surprise i din't see duplicate requests in logs After that. After some trials I foun...

Has anyone tested IE 8 developer toolbar ? is it really good like firebug ?

Has anyone tested IE 8 developer toolbar ? is it really good like firebug ? ...

How to add css selector in firebug' style's area?

How to add new css class or id and then write properties for html element in firebug's right side css pane. like we can write in web developer toolbar > edit css ...

Silverlight Spy, FireBug type tool for Flex

Is there a debugging tool for Flex that functions like Silverlight spy or FireBug? ...

How to disable the new, annoying, MSDN orange "Change view" button?

I've tried using noscript on firefox but it doesn't help, is there any way to use firebug to disable this button? ...

How to find the snippet of JavaScript that modifies an element?

The page I'm trying inspect has a hidden <input type="hidden" name="Foo" value="123 /> element on a page, where Javascript/AJAX modifies the value. I'm trying to find where on earth in Javascript is the code that modifies this value from time to time. Is there a tool that could help me find the places in javascript that use/modify that ...

Is there a firebug-like tool for IE6?

Possible Duplicate: Firebug for IE I have no tool to inspect into DOM in IE6 now. ...

I can't figure out the bug in this jQuery.

The page having problems is... http://schnell.dreamhosters.com/index.php?page=gallery# I use Firebug to debug my jQuery and other code tidbits and it's been proving very useful for Javascript/jQuery debugging. However, at the same time, it's been one of the most frustrating debugging experiences I've ever gone through. I'm not sure wh...

Missing 'DomContentLoaded' and 'load' time information in Firebug's Net Panel.

Hello, Firebug is awesome in reporting the relative time when an HTTP request was made with respect to the 'DomContentLoaded' and 'load' time. However, once the 'load' event occurs (seen by the red line on the timeline), the requests thereafter do not have any information about how later they occurred with respect to the two events. To...

Firefox plugin or way to monitor ALL request data, including headers and content downloaded to browser

I am having problems getting ALL of the information that is downloaded to a browser. For example, I want a plugin, ideally a firefox plugin to download the HTML content and monitor when I get a 302 redirect, and all header information. So far, use Live HTTP Headers and Firebug. Both are fine. With Live HTTP headers, I can't monitor ...

Building charts with Google PageSpeed data?

So if you use the PageSpeed plugin for Firefox, there's an Export Data feature under the Analyze Performance section. So I've gone through our site and done an export on every type of page we use. Now I'd like to import all of this nifty info into a charting system or something so I can start studying the results. I did some searching o...

Problems using Firebug to view script on an ASP.NET page with a very large VIEWSTATE

I inherited an ASP.NET application that builds pages with massive viewstate values. As I have been working through it, I assumed I would be able to use Firebug to inspect the output and set breakpoints in the resulting client-side script. What I have found instead is that whenever Firebug encounters a large viewstate, it completely cho...

Is FirePHP limited by the Firebug console clearing upon redirect?

I am using FirePHP with Zend Framework. When the user submits a form, I wish to output some data to the Firebug console and FirePHP is perfect for the job. This all seems to work fine, except that when my server code processes the form, it then redirects to another page - using Zend's _redirect() - causing Firebug to clear the console....

Firebug: How to inspect elements changing with mouse movements?

Sometimes I need to inspect elements that are only showing up on a page if you put mouse over some area. The problem is that if you start moving mouse towards firebug console in order to see the changes, mouse-out event is triggered and all changes I am trying to inspect disappear. How to deal with such cases? Basically I am looking for...