I want the text that I write on the input to be shown inside the "engrave-image" div. For some reason, I cannot get it to work. I appreciate your help.
function annotate(obj) {
var typed = document.getElementById(obj).value;
document.getElementById("engrave-image").innerHTML = typed;
}
<input id="engrave-text" maxlength="15" onkeyup="count_up(this)" onkeyup="annotate(this);">
<div id="engrave-image"></div>