jQuery : Chrome textareas and resize event

events, google-chrome, jquery, textarea

Solution

It doesn't look like you can specifically attach events to resizing a textarea. The resize event fires when the window is resized.

Problem

Chrome makes textareas resizable by default. How can I attach events to the resizing events for the textareas ? Doing the naive `$('textarea').resize(function(){...})` does nothing.

Original source