I have html page and need to fire an event when changing the content. The text box is in read-only status and it's value change by some other jquery functions. I search through the internet and most of forums said that below code will work.
$('#some_text_box').on('input propertychange paste', function() {
console.log('fired');
});
But this not works for me.