Ask for Help
“console.log seems to be broken again in Firebug with 1.2.1?”
People have had some success with 1.3 beta. Get Firebug
“Suggestions for creating PDF’s in Ruby?”
“console.log seems to be broken again in Firebug with 1.2.1?”
People have had some success with 1.3 beta. Get Firebug
“Suggestions for creating PDF’s in Ruby?”
I’ve found that just by adding this to one of my js files, I get rid of the console is not defined errors. And I don’t get alerts, but the actual behaviour of console.log.
YMMV, I guess :)
if (typeof console == “undefined”) {
console = function() {
this.log = function(str) {alert(str)}
}
}
November 7, 2008 at 3:32 pm