Category Archives: Firebug

Javascript logging to Firebug

In my opinion, the best browser based web development tool currently available is Firebug, a plugin for Firefox.  Firebug allows the user to debug, edit, and monitor any website’s CSS, HTML, DOM, or JavaScript. Today I’m going to focus on the various types of logs Firebug can be used for. In the past, when debugging JavaScript, I’ve used alert(‘something’) or document.write(‘something’) to output information. While this works, logging to Firebug offers a cleaner and more efficient solution. 

Posted in Firebug | Leave a comment