2
votes
1answer
54 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 ...
0
votes
0answers
23 views

FireLogger and FirePython, are they currently working with Django?

Coming from PHP i always debugged using FirePHP. I came across FirePython but i couldn't get this to work on the current version of Firebug and FireFox ( although the PHP version works fine ). Anyone ...
0
votes
2answers
39 views

How can I get rid of these persistent Warnings/Errors in Firebug?

Below are examples of Warnings/Errors that appear in the Firebug console ALL THE TIME no matter what page or content I am trying to debug: Use of Mutation Events is deprecated. Use MutationObserver ...
1
vote
2answers
184 views

How to debug ExtJS 4 code with firebug (in Firefox)

I've been trying to debug javascript (namely ExtJS 4.0.7) code with firebug (in Firefox browser), but when I set breakpoints and refresh the page, breakpoints disappear and no debugging happens. What ...
0
votes
1answer
37 views

Firebug: open console during debugging in script tab

When I'm debugging javascript in Firebug I have to switch frequently between the console and the script tab, whereas in Webkit Inspector I can just open a console from the bottom. I think it's easier ...
1
vote
0answers
73 views

Watching data flow in javascript debugger in Firefox or Chrome

I have a complex problem to solve. I want to figure out a way where I can create a log of all variables names, function arguments (including function names) and their respective line numbers if any of ...
0
votes
0answers
17 views

Firebug Css debugger and asset generated file

I have this little problem. I am trying to fix the style of a website by examining the css using Firebug (in firefox). The thing is that i can't figure out where this specific style is at because it ...
0
votes
0answers
31 views

firebug watch panel not showing variables

I am finding that as I set a breakpoint in javascript and step through the code, the watch panel is not updating to display variables. I am doing a tutorial on lynda.com, using the provided exercise ...
1
vote
4answers
57 views

Firebug is skipping lines after $(document).ready(function() while debugging

I just want to create a dynamic URL. I am calling the listServices method and it is working as expected where as the getPortNumber which i am calling from listService is not working. I added dubug ...
2
votes
2answers
84 views

Yii and bootstrap: How debug jQuery when I get a strange behavior?

I have a problems developing an Yii application with jQuery. Using Firebug, when I click in a tab, I can see the navigator makes a lot of calls: twice to the home page, four to the original ...
1
vote
2answers
132 views

Breakpoints does not work in Firefox (19.0) using Firebug(1.11.2)

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>An example</title> <script ...
0
votes
2answers
60 views

//@ sourceURL equivalent for CSS

In Firebug, //@ sourceURL can be used in a Javascript eval. We can use this technique to concatenate multiple Javascript files into a single file, and still have them show up as separate files in ...
3
votes
2answers
32 views

JS debugging processes? [closed]

Scenario: I have a plugin that is in use on a third-party's site, and I have to debug some conflicting JS and CSS. I don't have access to anything on their site other than the public page that is ...
-1
votes
4answers
85 views

What is causing the horizontal scroll to appear?

In the regular version, wide version, and tablet version the scrollbar appears as soon as the window gets to about an inch away from the site_wrap container the horizontal scrolling appears. I can ...
0
votes
1answer
128 views

Firebug Lite doesn't open in Safari on iPhone with iOS 6.1

I don't get Firebug Lite running. Neither the bookmark nor the inclusion of the script is opening Firebug Lite in Safari on a iPhone with iOS 6. Nothing happens. How do I get it running?
0
votes
0answers
98 views

Firebug Console Error/Warning filter settings

I am developing a WordPress theme which will be for sale commercially. I am running the theme through some tests and checks. One thing I want to do is to check for problems with the javascript. All of ...
2
votes
3answers
48 views

Debug which Javascript runs with an element is clicked on

Consider an element <img id='hitMe' /> which is referenced in a jQuery function with either $('#hitme').click() or possibly $(document).on('click', '#hitme'). How can I find these functions in ...
1
vote
2answers
35 views

Finding the Javascript file and line number that causes some action using Firebug or some other tool

Is it possible to use Firebug ( or some other tool ) to find out where some JS action came from ... ie which file and line. For instance I have a button that causes a dropdown/slide and I want to ...
0
votes
1answer
64 views

Firebug step-over doesn't break on next line

I'm trying to debug JavaScript in Firebug but have very little success so far. I've set up a few breakpoints on every few lines in a JavaScript in Firebug. The problem is that whatever step buttons I ...
0
votes
1answer
87 views

Debugging an ajax call after submitting form

I have a form developed automatically by some php framework. I want to add a custom validation for form inputs and prevent submitting the form if the validation fails. To do this, I wrote the ...
3
votes
3answers
93 views

How to debug Javascript process and animation?

There are lots of tools for debugging JavaScript codes (like FireBug, Chrome console), but is there a tool for debugging a process. This probably need to monitor the resource (e.g. CPU) usage to find ...
0
votes
4answers
82 views

How to find which javascript code fired ajax?

Is there any quick way to find out which javascript code (file name and exact line) fired a particular ajax call? Using firebug i can locate the ajax call but finding out the exact line quickly will ...
2
votes
1answer
66 views

How could I get Chrome Extensions off when I inspect web elements?

I had installed dozen of Chrome Extensions. But when I "right click" > "inspect element" in Chrome to check my html structure, I don't want to see anything from Extensions. here is a simple page ...
-3
votes
1answer
135 views

IE Tab 2 addon for Firefox isn't compatible with Firebug

I am maintaining a website designed specifically for IE.I am using IE Developer tool for JS debugging, however it freezes the IE and crashes it.I have used Firebug for Firefox and it's an amazing ...
-1
votes
1answer
106 views

Debugger for HTML/CSS/JS in Android/IOS device browser

I have developed Lots of websites, where i use Developer tools on IE / firebug on Firefox & Chrome is also having inspect element function for Editing & Debugging. But When i started ...
0
votes
0answers
31 views

Which JS Event Caused Element to Show?

I am using Twitter Bootstrap's JS library, which is quite complex and allows to simulate a dropdown via specific data attributes to elements - e.g. when one element is clicked, another element that ...
0
votes
1answer
98 views

Creating a custom “console” object to interact with Web Console in browser for custom debugger

The Mozilla Developer Network page on the browser-provided Javascript console object says: "Note: At least in Firefox, if a page defines a console object, that object overrides the one built into ...
0
votes
2answers
85 views

Debug javascript added by jquery

I have a .js file imported in another .js file like this: $.getScript("/js/...../myFile.js", function() { }); All the code is full loaded becasue I can use functions inside the file. But when ...
0
votes
1answer
170 views

JQM: How to break while debugging in a JS file loaded through $.mobile.changePage()

I am developing a mobile app using jQuery, jQuery mobile (and PhoneGap, but that is not relevant). Let's say I have two html pages: page1.html and page2.html. I am loading page2.html using ...
0
votes
4answers
75 views

Javascript code run sequence

I'm not well familiar with JS, as I mostly develop desktop applications. But I do know how to use Firebug ;) I'm wondering how can I find the sequence those much *.js files loaded with HTML being ...

1 2 3 4 5 7
15 30 50 per page