JQuery binding events using properties and DomAttrModified

I am working on an application, and I have a property where a small change in textarea should warn the user, I tried onChange events, but this is not a server. The goal, I found onPropertyChange, it seems to work only in IE, I had to make this application cross- a browser that looks like something like onpropertychange with other browsers. I looked at DomAttrModified , but it doesn't seem to work, how can I do it: Here is my code below:

$("#info").bind('keyup keydown keypress onDOMAttrModified propertychange', function(evt) { var keyCode = evt.which; var text_area =$(this).val(); } }); 
+4
source share
1 answer

try

replace onDOMAttrModified with DOMAttrModified

 $("#info").bind('keyup keydown keypress DOMAttrModified propertychange', 
+3
source

Source: https://habr.com/ru/post/1497646/