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
You could use the jquery .text function, though it will rather escape the html than strip it:
$(".myTxtBox").text("this text will be displayed, even the b tag.");