• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Jeanne Boyarsky
  • Tim Cooke
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
Bartenders:

Debugging jQuery

 
Sheriff
Posts: 11604
178
Hibernate jQuery Eclipse IDE Spring MySQL Database AngularJS Tomcat Server Chrome Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Everybody who developed JS knows that debugging isn't easy. Thanks to Firebug life of a web developer has become a lot easier But you don't always have Firebug to the rescue (if you have to develop an inhouse application for Internet Explorer only for example). Does jQuery provide some debugging utilities/tools (something similar to log4j, like the console used by dojo toolkit), or are you stuck with the window alert?

And when I see jQuery snippets, they often (always) use chaining, for example:


Can this be easily debugged through Firebug and/or with the jQuery debugging utilities/tools? Or do you have to break it down in single lines to ease the debugging process?
 
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Firebug itself provides logging support: http://getfirebug.com/logging
 
Sheriff
Posts: 67735
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I use Firebug and Firebug Lite, and HttpFox.
 
Roel De Nijs
Sheriff
Posts: 11604
178
Hibernate jQuery Eclipse IDE Spring MySQL Database AngularJS Tomcat Server Chrome Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
As far as I know Firebug and HttpFox are add-ons for Firefox. Firebug Lite can be used with other major browsers like IE, but doesn't provide a js debugger.

So the question still stands (unless I'm wrong): does jQuery provide debugging utilities/tools when you have to develop js for IE only (because it's not publicly accessible and IE is the standard and only browsers used in the company).
 
Bear Bibeault
Sheriff
Posts: 67735
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No.
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
IE8 has a great debugger built into it. So many people have no clue that it is there.

IE8 runs as IE7

Eric
 
Ranch Hand
Posts: 608
Firefox Browser Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There seem to be quite a few plugin's that integrate into firebug's console. I found a couple that (they say) work cross browser. Mostly something that emulate the console - http://sites.google.com/site/jollytoad/browsercompatibility and http://code.google.com/p/jquery-console/

But I guess between the IE7/8 debugger and Firebug you might not want to really look (much) at other tools!
 
blacksmith
Posts: 979
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
...have a look at the following How to Debug Your jQuery Code

The article explains in detail some debugging possibilities.

Gian
 
Roel De Nijs
Sheriff
Posts: 11604
178
Hibernate jQuery Eclipse IDE Spring MySQL Database AngularJS Tomcat Server Chrome Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Eric Pascarello wrote:IE8 has a great debugger built into it. So many people have no clue that it is there.



Indeed I didn't know that I developed an in-house IE6 web application 5-6 years ago and I know debugging the JS with Microsoft Script Debugger was most of the time really frustrating. Glad to hear they have a decent one now

 
Eric Pascarello
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Roel De Nijs wrote:

Eric Pascarello wrote:IE8 has a great debugger built into it. So many people have no clue that it is there.



Indeed I didn't know that I developed an in-house IE6 web application 5-6 years ago and I know debugging the JS with Microsoft Script Debugger was most of the time really frustrating. Glad to hear they have a decent one now



If you have Visual Studio or visual web developer express you could always hook up IE6/7 into it and walk the code too.

Eric
 
Ranch Hand
Posts: 324
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
IE Tester is another good tool. It allows you to test all IE versions in demand.

-Himalay
 
Doe, a deer, a female deer. Ray, a pockeful of sun. Me, a name, I call my tiny ad ...
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic