How to see console.log messages of a website using android simulator?
A:
You could add some JavaScript temporarily like...
var console = {
log: function(msg) { alert(msg); }
};
Ugly as hell, but it works.
alex
2010-10-18 06:51:47