0
votes
3answers
32 views
Why does the firebug console keep saying “undefined” when I enter a json object?
Here is a short transcript from my firebug console:
>>> var a = {"name": "bob"};
>>> a
undefined name=bob
>>> a.name
"bob"
>>> b = 10
10
>&g …
0
votes
1answer
21 views
Firebug console and css errors
I am getting the following error in Firebug (console -> show css errors)
Expected ',' or '{' but found '0.2'.
This is on a page with jCarousel.
Is there a way to get more info …
5
votes
8answers
130 views
Best Way to View Generated Source of Webpage?
I'm looking for a tool that will give me the proper generated source including DOM changes made by AJAX requests for input into W3's validator. I've tried the following methods:
…
0
votes
2answers
29 views
What do the FireBug DOM colors mean?
I'm confused with these colors.
I noticed there are 4 colors showing in the left hand column of FireBug DOM tree:
Bold black
Black
Bold green
Green
In the right hand column:
…
3
votes
1answer
44 views
How do I talk to Firebug from a Web Worker?
My web workers are becoming increasingly complicated and I'm sorely missing Firebug access while working with them. This:
console.log("test");
Does not produce anything from a w …
0
votes
1answer
16 views
Firebug shows “offset” as Outer displacement ring enclosing Margin, Border, Padding, Element
In Firebug's HTML Layout view, what HTML property does "offset" represent. I have goggled around looking for a coherent answer and have yet to find one.
0
votes
4answers
70 views
More fun with stupid Firebug errors
test.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xht …
1
vote
3answers
45 views
Javascript, Firebug: How do I have multiple views or what is the right of way of doing development?
Most of my javascript work is done with Firebug and I feel annoying most of the times having to switch between the HTML mode and console mode (which again I split into output mode …
0
votes
3answers
42 views
Getting the full url for an image in webpage
I would like to get the full url of an image in a web page. The image is used as a background image. I was using Firebug's inspect feature. In the CSS view, it shows url(/images/my …
0
votes
4answers
57 views
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 …
6
votes
4answers
124 views
Why does firebug add <tbody> to <table>?
I viewed the html source code, there is no <tbody>, but when viewed via firebug in the HTML tab, <tbody> appears. Any idea why?
2
votes
2answers
29 views
extension like firebug to actually write on the file system
I'm not a desktop applications developer so I was wondering if someone heard about an extension that actually writes on the file system. it would be great if you open firebug like …
0
votes
3answers
96 views
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 monito …
0
votes
3answers
147 views
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"></scrip …
4
votes
7answers
205 views
Should I learn Firebug or IE8 Developer Tools?
I need to learn either Firebug or IE Developer Tools in a hurry, and I could use some advice about which one is better. I'll be using either one to debug some JavaScript, primaril …
