here's code over-ride console.log(), , works in firefox, chrome, opera, etc.
var _log = console.log.bind(console); window.console.log = function (data) { _log.call(this,data); //do }
but, latest version of microsoft edge throws me error.
script445: object doesn't support action
(at line 1 - var _log = console.log.bind(console);
specific)
how can make work on edge? why doesn't work?
when surfing this, saw this answer , cleared edge settings , data. worked.
Comments
Post a Comment