I have seen some online css specificity calculators but you have to upload the css files and do some manual work for it to do its work.
Is there a visual one like maybe a Firebug extension where when you click or hover over an element, it calculates it right there in real time?
...
I viewed the html source code, there is no <tbody>, but when viewed via firebug in the HTML tab, <tbody> appears. Any idea why?
...
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 extension and do some modifications e.g. adding CSS rules and they will be added automatically in the CSS file. how hard would it be to build such an extension...
Something is going wrong with my jquery ajax-ing. When in a similar situation before I have been able to open the site in firebug and watch the ajax request in the in the console, seeing exactly what was sent and received.
In my current project for some reason I see the request flash across firebug's console but it disappears almost im...
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 and input mode). When I switch to a different page to see the HTML and come back, I lose the code that I write. What is the best way to go about developing jav...
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/xhtml"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd"
xml:lang="en">
<head><...
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/myimage.gif) for the background-image element.
Is there a way to display the full url?
...
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 web worker. I've also tried the following:
dump("test");
And that doesn't produce any output either.
Firefox version:
Mozilla/5.0 (Macintosh; U; Intel Mac...
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:
Web Developer Toolbar - Generates invalid source according to the doc-type (e.g. it removes the self closing portion of tags). Loses the doctype portion of th...
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.
...
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:
Blue
Red
Bold green
Green
Multiple color elements representing object structures.
What do this colors represent? And why, e.g, I can access window.document.U...
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 information about this error in Firebug, I can't find it in the code.
...
Here is a short transcript from my firebug console:
>>> var a = {"name": "bob"};
>>> a
undefined name=bob
>>> a.name
"bob"
>>> b = 10
10
>>> b
10
Why does firebug print "undefined"? Why on a and not b?
Inquiring minds want to know.
...
I have added an onclick event, which opens a new tab/page, to a button which has an action already (I don't know which action cause it isn't displayed in source, or maybe it's a form submit action).
Button originally also opens a page in new tab, what I want to do is fire up some function after my onclick attribute executes which will s...
Does anyone know how I can use firebug from an overlay.js script in a Firefox extension? I'm on Snow Leopard (just in case it makes a difference).
I'm developing an extension but it's taking me forever because I have no visibility into my javascript objects.
Thanks!
...
I've been adding quite a bit of javascript to my pages lately, but have learned it all in classic seat-of-the-pants fashion. When I want my page to do something, I google and experiment until I get the result I want.
I frequently have objects in my pages that I want to activate/deactivate, hide, show, etc., but - having missed the ri...
Firebug console scope. Why isn't "this" always the same? Shoudn't it be "window" all the time?
...
Firbug profiler outputs the functions called, but not the arguments/parameters of each function call. Is there any way to get those arguments?
I've dug through the DOM tab for any of the given function calls that I know would have to have had some arguments, but was unsuccessful in pulling out any details.
...
HTML code:
<input type="text" id="secrecy" name="secrecy" size="3" maxlengh="3" />Days
Jquery code:
$('#secrecy').keyup(function(){
alert("ok");
});
Error message:
The 'charCode' property of a keyup
event should not be used. The value is
meaningless.
The Jquery code doesn't work.When I input something into "secrecy", ...
I am looking for a preferably free http proxy to be used for debugging purposes.
I already have firebug and firebug lite in my tool set, but firebug lite won't let me see ajax requests in internet explorer.
I thought an intercepting proxy might do the feat
...