Debbugging Your Web Apps
Debugging has come a long way in the last few years, the current crop of tools is making web development faster and easier than ever before.
A great tool I found today is FireBug (late to the party as usual). It let’s you what’s going on under the hood of the browser including JavaScript, CSS, HTML and Ajax. Aside from debugging your own code you can sneak a peak everyone else’s business (for inspiration of course not to copy and paste).

FireBug highlighting a div
A tool I’ve been using since the early Remoting days is Charles, which shows you all the communication going on between your browser and server. Charles saved me big time a couple of years back when Flash started requiring crossdomain.xml files if your .swf wanted to access data from another web site. Long story short I missed the memo about cross domain files and couldn’t for the life of me figure out why my Flash file could connect to data when tested locally but not on the server. Charles let me know that the .swf was checking for crossdomain.xml. Problem solved.
This entry was written by
Alastair, posted on
October 12, 2006 at 5:29 pm, filed under
ActionScript,
JavaScript,
Ruby on Rails. Bookmark the
permalink. Follow any comments here with the
RSS feed for this post.
or leave a trackback:
Trackback URL.
© Copyright 2006 - 2010 Alastair Dawson
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.