When a user create a message there is a multibox and this multibox is connected to a design panel which lets users change fonts, color, size etc.. When the message is submit
Does this do what you want? http://jsfiddle.net/smerny/r7vhd/
$("body").find("*").not("a,img,br").each(function() { $(this).replaceWith(this.innerHTML); });
Basically select everything except a, img, br and replace them with their content.