a textarea needs to do something when it is resized either manually (is has style resize:both) and when it is resized programmatically. It works fine programmatically, but not when user manually resizes.
textarea.resize( function(tn,newh,scroll){
console.log('resize');
....... );
});
I read something about that there was a bug in JQuery, with detecting manual resizing of textareas in Chrome. But is also doesn't work in Firefox etc. Also when I try to evoke same function on the parent-div (which automatically resizes as well), it also doesn't work. The text areas have
textArea.css('resize','both');
textArea.css('overflow','auto');
Can anybody tell why the resize event would not fire when manually resized , and what can I do about it?