WordPress Comments – Rich Text

I have found a way by using nicEdit here’s the tutorial.

In order to get this fully functioning, I had to amend my script slightly.

jQuery(".stickers img").click(function(){
    var img = jQuery(this).parent().html();
    var text = jQuery("#respond .nicEdit-main").html();
    jQuery("#respond .nicEdit-main").html(text + img);
});

I hope this helps someone.