Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery : Chrome textareas and resize event

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.

like image 669
glmxndr Avatar asked Jan 19 '10 19:01

glmxndr


1 Answers

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

like image 112
eliah Avatar answered Sep 29 '22 10:09

eliah