Crappy console
A simple logger to log JSFiddle info :D Usefull when you don't want to go to the console of the browser to see some result.
by Albertobeiz
HTML
<ul id="console">
<li>Console</li>
</ul>
JavaScript
function log(msg){
var li = document.createElement('li');
var text = document.createTextNode(msg);
li.appendChild(text);
document.getElementById('console').appendChild(li);
}
log('hi!');
log('rururururu');