GoodBye alert()
I have been working with Javascript and AJAX quite a bit recently. I always used alert() to debug something. At least to know that the script was able to call the method or something.
This is annoying & traditional way. I’m lazy to use Venkman. After doing some Googling about Firebug functionality, I found console.log(). Now, I can do same thing by using Firebug Console.
At least it’s not messing up my screen. w00f! It also has different logging levels:
- console.debug()
- console.info();
- console.warn();
- console.error();
- console.trace();
For more, Console API
Posted on May 9th, 2007 by SMD
Filed under: AJAX, Javascript

I am a Free and Open Source Software lover, advocate. I would like to see Open Source grow, and more users being able to use and understand it. I would like to continue to become a part of this growing community, and to grow with it! 



Cool! Thanks for this info.