Skip to content

Instantly share code, notes, and snippets.

@DimitryDushkin
Created May 29, 2015 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DimitryDushkin/ae994d4311fd7ec97b2b to your computer and use it in GitHub Desktop.
Save DimitryDushkin/ae994d4311fd7ec97b2b to your computer and use it in GitHub Desktop.
console log on screen
$('body').append('<div id="log" style="position: fixed; color: red; left:0;top:0;right:0; z-index: 100000"></div>');
window.consoleLog = function(text) {
$('#log').append('<p>' + text + '</p>');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment