Firebug allows the debugging, editing, and monitoring of any website's CSS, HTML, DOM, and JavaScript, and provides other Web development tools. It also has a JavaScript console for logging errors and watching values, as well as a "Net" feature which monitors the amount of time in milliseconds it ...
0
votes
1answer
28 views
Div under body, generated by PHP, doesn't show in DOM. Why?
The <div id="page>" and <div id="pagecontent"> don't show in on my webpage. In Firebug, the "Script" tab shows that index.php has both of these divs in it, but the HTML tab doesn't show ...
0
votes
0answers
19 views
Java swing eclipse unwritten field bug
I use the FireBug extenstion and when I checked for bugs it has returned this:
Unwritten field: ui.SubContractorUI.editSubContractorComboBoxCountry
Unwritten field: ...
0
votes
0answers
8 views
How do I run Firefox inspector within an iFrame?
I know Chrome's inspector has a selector to choose which frame to use with the console. Firebug has a similar command, cd(window.frames[number]). Is there anything similar in Firefox Devtools? I ...
0
votes
0answers
8 views
How to determine time to first byte?
I have been reading a lot about performance lately and there are tools which can assist you in increasing speed of a web page. But I could not find any tool that can tell me what is time to first byte ...
0
votes
1answer
12 views
backbone.js + rails + firebug TypeError: this.model is undefined
Ok guys, I originally set out to render the users' NewView onto my root page. I have gotten to the point where I can see the form, but when I fill it out and click "Create User" I get this error:
...
0
votes
2answers
21 views
ReferenceError: users is not defined rails + backbone + firebug
So I asked this question: render view in backbone.js + rails
I feel I have gotten close to the answer thanks to people pointing me in the right direction. The code in my ...
0
votes
0answers
9 views
How to tell Firebug to skip debugging jquery.js
I've set a breakpoint in my javascript code and started to debug. At certain points, the debugger jumps into the linked jquery.min.js file and just stops. Is there any way to tell Firebug to skip ...
0
votes
0answers
9 views
Anybody who knows why Firebug Console giving me the following Error
I am getting the following Firebug Error: http://static.app.widdit.com/js/analyzeComplete/component75.js/eval/seq/3 Line 1
1
vote
1answer
22 views
JSP Form is picking the edited value in FireBug
I have a form to be submitted in a jsp file. When submit, the form uses a value which is coming from a hidden value, say id.
<input type="hidden" value="1234" name="Id">
Prior to submit, I am ...
0
votes
0answers
25 views
Why does JavaScript's Array.reduce() appear to not work in Firebug?
Typing the following into my Firebug 1.11.3 console in Firefox 21.0 (on Ubuntu 12.04):
var values = [1,2,3,4,5];
var sum = values.reduce(function (prev, curr) {
return prev + curr;
});
alert(sum);
...
1
vote
1answer
21 views
Firebug Layout Tab Inconsistent with Firefox Responsive Tool
The firebug Layout tab says that my viewport is 788x1280, but in the firefox responsive tool I have it is set to 804x1280. What could cause the two to be have different widths?
1
vote
2answers
21 views
Is it possible to replace JavaScript snippets on the fly through Firebug
Is there any way to replace a line(s) of code from a JS file, through Firebug/Chrome DevTools.
I know it is possible to swap css classes. Is it possible with JS?
For example I know that this line is ...
0
votes
2answers
34 views
Change value in firebug and get with jQuery html();
I'm changing the value of a
<span></span>
using the firefox Firebug and then using
$("span").html();
But it is getting the changed value of the span, and not the original value ...
0
votes
1answer
28 views
<p:commandButton> with icon image not showing
I have been struggling this for a while. I am using primefaces 3.5. I have a command button with icon attribute. But the image seems not showing. I am not sure if I put the image url correctly. I ...
1
vote
0answers
30 views
how to read json string from firefox response using selenium webdriver
Hi I have a scenario to read the json response from firefox(firebug) using selenium. Can anyone please help me in automating this. Is there a way to read the firebug logs from selenium. Thank you in ...
1
vote
2answers
71 views
What is this *::-moz-progress-bar and why does it come up in Firebug CSS?
Whenever I right click to inspect element in Firebug on Firefox, it gives me this "*::-moz-progress-bar" CSS listed before the element I inspected. Anyone know what this is and how to get rid of?
0
votes
2answers
21 views
Handling multi tabs in a web application
In my web application, a user can rate a product via the product page.
He can also open multiple tabs in his browser.
What is the best practice to allow him to rate a different product on each tab ?
...
0
votes
1answer
22 views
What is “Request Headers From Upload Stream”
From firebug:
If I want to emulate this request using php-curl , do I have to worry about the request headers from upload stream? What exactly is it ?
0
votes
0answers
41 views
Jquery window height messed up
I'm using the jquery-rails 2.2.1 with the jquery 1.9.1
If i open the firebug and run the $(window).height() the height is 921.
If i close and open the firebug (same size) my $(window).height() changes ...
-1
votes
1answer
26 views
How to inspect elements using Firebug while building a custom addon
I am building a custom firefox addon,But unlike chrome where I can inspect the HTML within the extension I cannot do the same for FF.
I need to style the HTML. Any clues on how I can go about this?
8
votes
3answers
1k views
Cheat for hidden game “Atari Breakout” in Google Image Search
How would a cheat/auto moving paddle in this hidden html game look like?
There is a
<div id="breakout-ball"><span>●</span></div>
and a
<div ...
0
votes
1answer
23 views
JS event once element is added to DOM?
This is for debugging purposes so to find which part of code creates/modifies the element.
Is there a way to set up a breakpoint ir callback event once specified ID/CLASS element has been ...
-2
votes
2answers
130 views
Firefox right click menu is too long [closed]
My Firefox is getting huge long menu when right click. I am searching on net. If you have any Idea, why it shows that type of menu, please help me.
1
vote
0answers
40 views
#if statement throws TypeError: node is undefined
Consider the below snippet in Handlebar written for Ember.js:
<script type="text/x-handlebars" id="courses/selectedCourse">
<div id="selectedCourse">
{{#if IsRegistered}}
...
0
votes
0answers
43 views
Google Translate Save to Phrasebook Import - GET/POST Hack
I have bunch of words saved in plain text file and a I would like to import them to Google Translate somehow. They should then be visible in new Google Translate feature, Phrasebook. So what I did so ...
-4
votes
0answers
49 views
why jquery focus event doesn't worked on firefox? [closed]
why this code doesn't worked on firefox?
it works on chrome and IE well...
$('#search-text').bind({
focus:function(){
$(this).animate(
{width: "300px"}, 600 );
}
})
0
votes
1answer
19 views
Firebug debug problems with switch statement
When I have a switch statement in JavaScript and I want to debug this in Firebug,
I cannot place a break point to the lines of one case, because the line numbers there
are greyed out (the rest is ...
2
votes
1answer
10 views
Firebug debugging parsing error?
I am getting some wierdness with the Firebug debugger. I have screenshots that explain the problem:
http://www.tqis.com/pen/eloquency/images/tmp/before.png
As this screenshot demonstrates, the line ...
0
votes
2answers
18 views
FireBug (or any other method) - How to copy all CSS styling from DIV and child divs?
I am trying to copy all the css styling from a div (and all child/inner divs).
I mostly user FireBug and am hoping there is a simple way to do this so I don't have to go through thousands of lines of ...
-1
votes
1answer
26 views
Indent JS in firebug
My JavaScript is perfectly indented in eclipse. But, when I debug the same JavaScript code in firebug it is not. Not sure why and it makes it much harder to debug. How do I fix this?
-4
votes
1answer
25 views
“Computed” tab in new firebug sucks
After selecting an element, the "Computed" tab in Firebug doesn't show all computed properties any more. For example, it doesn't show display property, which is very important.
Is there any Firebug ...
0
votes
1answer
48 views
Using Firebug with Knockout causes “unresponsive script error”
I'm building a screen with Knockout using Firefox with Firebug open on the page.
In a very specific case I get an unresponsive script error from Firefox and after much testing I've narrowed it down ...
0
votes
1answer
24 views
Dojo dijit.form.Select corrupting european characters in Firefox
I have a dropdown defined as dojoType="dijit.form.Select" id="MyDropdown"
I load it from JSON array as follows
dojo.xhrGet({
url: "getOptions",
handleAs: "json",
...
-2
votes
0answers
30 views
Best way to debug Javascript conflict
There are some Javascript conflict in my website. What is a better way to debug? Using fire bug? But I didn't write my own functions. I just added a slider, js tab table etc. And I downloaded them ...
0
votes
3answers
47 views
find out what class is affecting a particular element
Is there a way to see exactly which declaration is affecting an element. Rather than looking at a million properties in the Firebug inspector, where depending on how many classes something is assigned ...
0
votes
0answers
8 views
Directive to suppress firebug warnings
I got some code here
try {
retValue = value.toString();
} catch (e) {
debug.log("value is null [Exception: " + e + "]", "courseGrid.format()", 6);
}
which is invoked in several iterations ...
0
votes
0answers
19 views
XML Parsing Error moz-nullexception firebug
I have seen this question before, but haven't been able to find an answer.
Basically, I am using EXT JS and using it to send a AJAX POST request to our webservice. Java, on the backend handles the ...
-1
votes
1answer
35 views
Should $(“#elementid”).click(…) show in DOM?
If I attach to onclick in an anchor tag for example, should I be able to see this in Firebug after the DOM has loaded?
The onclick is not firing and I'm trying to figure out what is wrong.
...
0
votes
1answer
33 views
loading a css style sheet through firebug console
Is there a way to load a style sheet through the firebug console? I know that the console is javascript but is there and extension that allows fire bug to load stylesheets?
0
votes
0answers
10 views
Firebug resends request on abort
I'm using ajax to call php function uploadResource(). This php function encrypts file and saves it to the database. So it can take quite a long time.
If file is too big and exceeds mysql ...
0
votes
0answers
9 views
Firebug: Is there a way to monitor a DOM object for all jQuery events
Often I'll have a situation where a DOM object is being targeted by several jQuery scripts and it's tough to figure out which is doing what. IOW: I'll have a DIV where there are two animations going ...
1
vote
1answer
42 views
TypeError in Javascript console
I'm getting an error in my JavaScript console in Chrome
TypeError: Cannot call method 'xxx' of undefined
Firebug reports in Firefox;
TypeError: t is undefined
T and xxx are just examples.
The ...
-3
votes
0answers
66 views
what's wrong with this javascript code? [closed]
window.onload = function() {
var links = document.getElementById('subMenu').getElementsByTagName('a');
for(var i = 0; i < links.length; i++) {
links[i].onclick = function() {
...
3
votes
1answer
79 views
Javascript Conditionals: confusion with &&
I am unpacking some data gathered from a form and setting object properties. If the input was a text, I am storing the value. If it was a checkbox, I am storing the "checked" attribute. If it was a ...
1
vote
1answer
43 views
A website that performs a similar function to Firebug, Chrome developer tools etc [closed]
I'm looking for a website that duplicates at least some of the most basic features of Firebug, Chrome developer tools, etc, but that is simple enough for a non-developer to use.
At the very least, I ...
2
votes
1answer
56 views
Can Firebug be more useful at debugging? Alternatives?
Figured out how to make my javascript work, but it took a really, really, really long time. Enough to make me wish to continue avoiding javascript. I started with a complex page, and kept reducing ...
-1
votes
0answers
53 views
Does jquery selector exist?
I have a codeigniter that uses twitter bootstrap. At the end of it I have a simple fade in script using jquery:
<script src="http://localhost/b1/js/jquery.js"></script>
<script>
...
0
votes
0answers
27 views
Use Firebug's Net panel Data for output?
Is there any way to use the information that is seen in the Net Panel section of firebug? If Firebug/FF can get that data, why can't we use that to output info to our DOM?
My app uses a modified ...
0
votes
1answer
150 views
Extracting CSS Code in Firebug plugin [duplicate]
I'm not sure whether it is a right place to ask this question. I need to get the CSS that is generated by Firebug when we inspect a element. But after some research i couldn't able to extract the ...
0
votes
0answers
7 views
View elements using javascript codes in vimperator?
I tried to use a command like this in Vimperator:
echo document.getElementsByTagName("p");
To view nodes whose tag name is <p> in vimperator. However, the result is like this:
I also ...



