Simple editor
by Daman Daman
HTML
<textarea id="editor"></textarea>
<div id="output"></div>
CSS
#output {
width:200px;
height:200px;
background:yellow;
}
JavaScript
var editor = document.getElementById("editor");
var output = document.getElementById("output");
editor.value = "Type here!"
editor.addEventListener("keyup", sendCode);
function sendCode(){
output.innerHTML = editor.value;
}