I am trying to detect whenever the user resizes a resizable textarea..
I am trying to do it with this code but it doesn't work:
$('textarea.note').bind("resize", function(){
alert("resize!!!!!");
})
I don't want really to use any kind of timer and loops.. Help!?