I have set up a little web application where you add post-its to a page. It\'s just a project to help better learn JavaScript/jQuery and it seemed like an appropriate projec
$("textarea.text_input").on('keyup', function() { this.value = this.value.replace(/<(.|\n)*?>/g, ''); });
FIDDLE