You will probably need several events that will be displayed in characters, insert, etc.
$("#inputPane").on('keyup paste click whatever', function() { alert("Changed!"); });
If for some reason it fires several times:
var fire = true; $("#inputPane").on('keyup paste click whatever', function() { if (fire) { fire=false; alert("Changed!"); } setTimeout(function() {fire=true}, 200); });
source share