[JS] Print console log into div
THIS SITE IS MIRROR || Skip to Full Contents (Read More)
[JS] Print console log into div - Posted on February 6, 2019 10:55 PM by Dimas Lanjaka Kumala Indra JS HTML Programming JS HTML <div id=”debug”></div> Pure Javascript (function… HTML
Pure Javascript
(function () {
var old = console.log;
var logger = document.getElementById(‘log’);
console.log = function (message) {
if (typeof mess
THIS SITE IS MIRROR || Skip to Full Contents (Read More)
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.