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(); } });
source share