Skip to content

Instantly share code, notes, and snippets.

@masimplo
Created March 6, 2016 17:46
Show Gist options
  • Select an option

  • Save masimplo/90057ce8aa890c3581b1 to your computer and use it in GitHub Desktop.

Select an option

Save masimplo/90057ce8aa890c3581b1 to your computer and use it in GitHub Desktop.
jsFiddle console monkey patching
.console-line
{
font-family: monospace;
margin: 2px;
}
var consoleLine = "<p class=\"console-line\"></p>";
console = {
log: function (text) {
$("#console-log").append($(consoleLine).html(text));
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment