0
votes
0answers
29 views

Problems while debugging JsTree Data

I am a complete newbie oon JS and JsTree. Try to build a JsTree with an ajax call from my framework, what works very well. Now I need to debug the data which I have in the tree, especially the ID ...
0
votes
0answers
66 views

Optimizing a script which turns numbers to words

I wrote a code which makes real numbers verbal, and I'm trying to design short functions that will include any case in them, instead of mentioning spesific cases (which works here). You will get the ...
3
votes
2answers
28 views

Debug AJAX Requests

Many time we face issues while working on Asynchronous javascript. We are not sure what request is posted and what respones is obtained. How to Debug AJAX Requests. Is there a easy way to do that.
1
vote
0answers
37 views

Debug javascript in Visual Studio 2012 when using chrome or firefox

Is it possible to debug javascript code in visual studio when using chrome or firefox? With IE it works, but also when i enabled source maps in chrome it does not work. In webstorm it works by the ...
0
votes
0answers
24 views

Debug PHP called through Javascript in Aptana

I can debug my PHP scripts using Aptana 3.4. In "Debug Configurations" I simply choose "Use specified script" and when I run that script in Firefox, it automatically breaks in Aptana. Now I'd like to ...
0
votes
1answer
31 views

Debugging in-page javascript with Chrome when the html is minified?

The scripts on our website are embedded in the html and everything is minified. Throwing a debugger statement into the javascript to debug doesn't help very much because there's only actually one line ...
0
votes
1answer
29 views

is there any IE javascript debugger?

I am looking for a good IE javascript debugger, i have used firebug lite but it seems not so explicit like the real firebug about js errors. How to know the js errors in internet explorer with exact ...
1
vote
1answer
23 views

Check if a javascript function was not completed

Since I installed Adblock Plus for firefox (Add-ons to block advertisement), every animation powered by scriptaculous doesn't work anymore (not only on my website). Now that I know it, I'm looking ...
0
votes
0answers
8 views

Make a exjs function call logger

I want to make a function call logger from exjs. here is what i came up untill now. Ext.augment = function(withFn) { var name, fn; for (name in Ext) { fn = window[name]; if ...
0
votes
0answers
15 views

Eclipse adding breakpoints of the wrong type

I have developed an editor for a new language which extends the JavaScript editor and also a debugger plugin for eclipse. the debugger implements it's own breakpoint type (which extends eclipse ...
0
votes
1answer
41 views

How run Javascript and jQuery in Firefox on an external webpage?

I want to run my own JavaScript (written using jQuery) in Firefox in an external webpage. How to do that? I know it can be done by jQuerify and ScratchPad. But I have a loop running and new page ...
0
votes
1answer
38 views

Javascript & Chrome Debugger: “Uncaught SyntaxError: Unexpected token } ”

i'm writing a javascript file. I'm loading some data from a java jersey webservice which is running fine. The data is then parsed in a html table via javascript (s. fillSelect()- function). Now i Want ...
4
votes
1answer
34 views

Ignoring specific JS errors by matching text

In my hosts file and ad blocker, I have a domain and a file to be ignored by my computer - to prevent some problems (I'm ignoring api.mixpanel.com to not trigger tracking on my local machine and I'm ...
0
votes
3answers
30 views

Javascript REPL from the command line

Whenever I am coding, I often find myself every now and then in a REPL to test out some concepts before I go ahead and implement it. For Ruby on Rails development I use PRYand for python I use ...
0
votes
0answers
22 views

Remote Debugging Javascript

Is it possible to remote debug javascript files, served via a web server, i.e. thin, unicorn, etc? If yes, how? I've tried eclipse + chrome dev tools, but that seems to only work when files are opened ...
0
votes
1answer
45 views

jQuery issues (Safari/Chrome) with smooth scroll

I'm building a site which is a single scroll with smoothscrolls and some more JS for some feature across the page. On Google Chrome, this seems to work for me with no issues at all; although a few ...
0
votes
0answers
19 views

FireBug debugger does not synchronize with the actual javascript code

Im having a issue in using firebug to debug javascript code. It doesn't sync with my actual javascript. It comes to the debug mode but doesn't show the exact line where i added the debugger. instead ...
1
vote
0answers
17 views

Break on error, but not on these specific lines?

I hope i am not alone in noticing that various versions of jQuery tend to have strange non-showstopper errors that get thrown but which are caught, and yet this tends to set off the debugger on Chrome ...
0
votes
3answers
34 views

How to know values of all attributes and properties of a tag element in HTML

I want to see all values of attributes of any tag in HTML. Even if they are set in the tag or not in HTML. For example: <div style="background-color:#000000;"> <p>abc</p> ...
0
votes
1answer
30 views

Pause after each line in javascript

I would like to have a program pause after each line is executed in javascript. This is for a teaching tool where the user will type in there js and be able to step though it line by line. I want to ...
-1
votes
0answers
10 views

Is it possible to use PyCharm JavaScript debugging to debug a hybrid mobile app? [closed]

I've searched and haven't found anything helpful. Doesn't seem possible, but putting it out there all the same. Thanks!
0
votes
0answers
25 views

Chrome debugger continues automatically

I have a debugger statement (i.e. debugger;) in my javascript code and the chrome debugger halts correctly, but then it just continues, but breaks at the next breakpoint. What the hell is wrong with ...
-2
votes
0answers
15 views

Eclipse IE Javascript debugger [closed]

I want to use Internet Explorer's Developer tool (F12), which is a JavaScript debugger, used the "Open with Web Browser". What I see in the browser is an IE message: Do you want to debug the ...
3
votes
2answers
54 views

Finding an infinite (or very large) loop in JavaScript using Chrome Dev Tools

I'm using a third party statistics library which seems to have loads of issues. It's both large and compressed, so it's not particularly easy to debug. I'm using the Chrome Dev Tools and I was ...
0
votes
0answers
46 views

How to solve custom Javascript conflict with FancyBox in Wordpress [closed]

I'm using the dk theme in Wordpress. This theme has page templates that contain galleries baked in and those galleries use the Fancybox plugin to display thumbnails in beautifed full size mode. My ...
0
votes
1answer
41 views

I have an error replacing window.onload with window.addEventListener

I have an error replacing window.onload with window.addEventListener. The short javascript program below http://tinyurl.com/nh877nb has an error when replacing window.onload(start()) with ...
0
votes
0answers
19 views

debug js from within webstorm

Is it possible to debug js files from within webstorm IDE ? Preferably running app in chromium browser but instead of using using chrome developer tools, how do I debug from within webstorm?
0
votes
1answer
58 views

How to get browser diagnostics

I'm adding a bug report form to my project. When the user hits the send button on the form (after they explain what the bug is) I am getting information of their browser automatically. I'm currently ...
-3
votes
0answers
26 views

Would anyone be interested in this sort of logging ability for Javascript? [closed]

I've written a function which will write values of variables, their names, types and, if they are objects, their properties, to the Firebug (or other flavor of the same sort of log). You only need ...
1
vote
1answer
96 views

Debugging of Internet Explorer 9-10 crash

I'm a new developer of one site. Previous developer left a lot of trash and unstable code. But the main problem is that when I open this website and try to navigate throught the pages (just try 1-2 ...

1 2 3 4 5 41
15 30 50 per page