Tagged Questions
The javascript-debugger tag has no wiki summary.
10
votes
5answers
680 views
jsFiddle clones?
Are there any other websites out there that offer similar functionality to http://jsfiddle.net/ ? What are the pros & cons of each?
3
votes
3answers
102 views
How exactly does document.cookie work?
If I get Chrome to show me document.cookie by going into the console and typing "document.cookie"; it'll give me; say:
"name=John; gender=male";
But then if I type in, say, document.cookie = 5; all ...
3
votes
1answer
91 views
Opera dragonfly script debugger annoyances
Is there a way to reduce or filter the number of scripts shown in script debugger? With Chrome it just shows the file containing the scripts instead of every single script block.
Also, when I set ...
3
votes
2answers
774 views
Disable “Slow script” dialog in Safari while debugging javascript?
I'm using the built-in javascript debugger in Safari 4 on Windows (the WebKit Web Inspector), but when I'm stepping through code I keep getting the "Slow Script" dialog pestering me to abort/continue ...
2
votes
1answer
47 views
How to find JavaScript run when an event is hooked up unobtrusively
I am working on a web page that contains check boxes that do some stuff when they are clicked, or changed. There is no explicit event binding in the HTML itself. I have literally no idea how the event ...
2
votes
3answers
134 views
How to get to sandboxed environment of content script in Chrome JS console
If I open up the JavaScript console in Chrome Developer Tools to debug my extension's content scripts, I don't get the context of the content scripts. For example, jQuery isn't accessible, and I ...
2
votes
2answers
84 views
javascript debugging in IE7?
I run Win XP in virtual box with IE7 for debugging sites that have to work in IE7.
I only have issues in IE7, not IE8, IE9, Firefox or Chrome.
How would I find what JS file IE is talking about when JS ...
2
votes
4answers
1k views
IE8 javascript debugger is now broken
I am on Windows 7, using IE8 and Visual Studio 2005. I have been enjoying the built in javascript debugger in IE8 for several months. About 2 weeks ago, I installed some security update for IE 8 ...
1
vote
1answer
101 views
What's the difference between “DOMContent event” and “load event”
In chrome's Developer tool, the blue vertical line labeled "DOMContent event fired", and the red line labed "load event fired". Does "DOMContent event fired" means the browser begin to execute the ...
1
vote
3answers
54 views
How do I find/profile what JavaScript is being executed “right now” using Firebug or any other way?
I am studying this page: http://www.fxstreet.com/rates-charts/currency-rates/ which is continually updated by JavaScript with new data from the server. So clearly there is some JavaScript function ...
1
vote
1answer
77 views
How to use FileSystem API to debug Javascript? The execution order problem
I was debugging a complicated program written in Javascript. I need to watch the change of a large matrix. It is not convenient to see each elements in the matrix using Chrome Inspect Element. So, I ...
1
vote
1answer
41 views
Is it possible to audit what javascript methods are executing on a page?
My goal is to be able to see which javascript functions have executed since the start of an audit. This is most comparable to me placing a breakpoint at the start of every method in every javascript ...
1
vote
3answers
427 views
Microsoft Script Debugger does not display any information after error
I'm trying to debug a Javascript error which only occurs in Internet Explorer. I have Microsoft Script Debugger installed, and have used it successfully in the past. On this error, though, I select ...
0
votes
1answer
42 views
JavaScript Debugging on Android/iPhone
I have an strange problem with sencha touch. I have an application, where there are Select fields, And on change of select field value I am applying some rules, as per my business rules.
Rules are
...
0
votes
0answers
72 views
Disable Script Debugging in c#
I want to disable the notorious pop ups for script debugging
I tried the code
webBrowser1.ScriptErrorsSuppressed = true;
It didnt work with just this code. I had to change the settings in the ...
0
votes
1answer
33 views
Google Chrome Developer Toolkit is Slow
I have been using Google Chrome's dev tool kit (element inspection, stack trace, javascript debugging, etc.) for some time with great success.
However, about two weeks ago, it suddenly became VERY ...
0
votes
2answers
142 views
How can I inspect element in chrome when right click is disabled?
I want to debug a info box that shows when I mouse over a google map marker. But google map disables right click anywhere on the map canvas, so I can't inspect the element for debugging / viewing ...
0
votes
3answers
46 views
How do I see the url that I'm using in $.getJSON
I have the following code snip and am trying to debug it. Is there a way to get the full url string that the .getJSON call is calling?
opts = {};
opts['start'] = startdate;
opts['end'] = enddate;
...
0
votes
1answer
323 views
where is the yellow warning icon in ie9
does anyone know how do we enable the yellow warning icon in ie 9?
I need to see the errors for a website (the website is deployed, and not on localhost)
0
votes
2answers
117 views
How to debug lazily-loaded javascripts in Safari debugger
I have a very simple script that lazy-loads javascripts at runtime. There are unknown dependencies on each page, so they are not all loaded until needed.
Like most frameworks, this works by adding a ...
0
votes
1answer
282 views
how to stop the showing error message in visual studio for jscript in visual studio 2010
i am using IE 8 for testing the javascript i write for my web-application. i use something who are not unknown for IE 8 so they give me error each time
"Microsoft JScript runtime error: Object ...
0
votes
3answers
99 views
How to debug JavaScript files which are loaded dynmically?
Currently the web application I am working on loads in a number of script files using jQuery.Load() when the document DOM is ready. However, if those script files have syntax errors, neither Firebug ...
0
votes
1answer
79 views
Why sometimes Firebug won't show list of Javascript files to set breakpoint?
For example, if I go to
http://sorgalla.com/projects/jcarousel/examples/dynamic_ajax_php.html
and go to Firebug, and set Scripts to Enabled, and Show Chrome Source and Static, eval, and event ...