how to display content on the console on html code example
Example 1: display console log in HTML
(function () {
var old = console.log;
var logger = document.getElementById('log');
console.log = function (message) {
if (typeof message == 'object') {
logger.innerHTML += (JSON && JSON.stringify ? JSON.stringify(message) : message) + '<br />';
} else {
logger.innerHTML += message + '<br />';
}
}
})();
Example 2: html console text
<script>
console.log('%c text', 'background:---; color:---; font-size:---;');
</script>