enabling console in firebug1.2 + firefox 2


/ Published in: JavaScript
Save to your folder(s)

By default, Firefox2 + Firebug 1.2 have the console turned off. Need to enable it with the windlow.loadFirebugConsole() prior to any console method calls.


Copy this code and paste it in your HTML
  1. window.loadFirebugConsole();
  2. console.log("It works now.");

Report this snippet


Comments


You need to login to view comments.