Top "Firebug" questions

Firebug was a Firefox extension, which allowed the debugging, editing, and monitoring of any website's CSS, HTML, DOM, JavaScript, network traffic and cookies.

Loading local JSON file

I'm trying to load a local JSON file but it won't work. Here is my JavaScript code (using jQuery): var …

javascript jquery json firebug local-files
What is console.log?

What is the use of console.log? Please explain how to use it in JavaScript, with a code example.

javascript firebug console.log
How can I inspect element in an Android browser?

I want to inspect my website CSS/HTML elements in my Android browser. However it will be over a smartphone …

firebug google-chrome-devtools
Form inside a table

I'm including some forms inside a HTML table to add new rows and update current rows. The problem that I'm …

html firebug html-table forms
Firebug-like debugger for Google Chrome

Is there anything like Firebug that you can use within Google Chrome? Essential features I would like: Inspect HTML source (…

html css google-chrome debugging firebug
How do I add items to an array in jQuery?

var list = []; $.getJSON("json.js", function(data) { $.each(data, function(i, item) { console.log(item.text); list.push(item.text); }); }); …

jquery json firebug getjson
How to debug JavaScript / jQuery event bindings with Firebug or similar tools?

I need to debug a web application that uses jQuery to do some fairly complex and messy DOM manipulation. At …

javascript jquery javascript-events event-handling firebug
Tools to selectively Copy HTML+CSS+JS From A Specific Element of DOM

Like most web developers, I occasionally like to look at the source of websites to see how their markup is …

html css internet-explorer firebug google-chrome-devtools
Differences between socket.io and websockets

What are the differences between socket.io and websockets in node.js? Are they both server push technologies? The only …

node.js google-chrome firebug websocket socket.io
How can I use console logging in Internet Explorer?

Is there a console logger for IE? I'm trying to log a bunch of tests/assertions to the console but …

javascript internet-explorer internet-explorer-8 console firebug