JQuery TextArea Change Event
HTML
<!DOCTYPE html>
<body>
<textarea id="mytextarea" rows="4" cols="20">
</textarea>
</body>
</html>
JavaScript
$(document).ready(function(){
$("#mytextarea").change(function(){
console.log("text area changed");
});
});