Like this my function is working fine:
$(".textarea").on("change keyup paste", function (){
console.log("something happens");
});
But when I want to apply it to my wysihtml5 it does not work anymore..
$('.textarea').wysihtml5();
$(".textarea").on("change keyup paste", function (){
console.log("something happens");
});
Working solution: