views:

8

answers:

1

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