I have a textbox asp.net server control. I am modifying the value of textbox from javascript i want to detect when the textbox text is changed. I tried onchange event which
If you could use jQuery, it would be something like this
$('#id_of_text_area').change(function(){ //do something });