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.
|
|
|||||
|
|
It doesn't look like you can specifically attach events to resizing a textarea. The resize event fires when the window is resized. |
|||
|
|
|
I can't test this right now, but according to this forum entry it can be disabled using:
unlike stated in that entry, |
|||||||
|
|
Here's a jQuery plugin written using CoffeeScript. Idea from Jonathan Sampson.
You can build it to Javascript on the CoffeeScript's homepage http://jashkenas.github.com/coffee-script/ Use the "Try CoffeeScript" button. |
||||
|
|
|
This is an old question, but someone else had the same one in IRC, so I decided to solve it here: http://jsfiddle.net/vol7ron/Z7HDn/ Everyone's right that Chrome doesn't capture the resize event and that Chrome doesn't capture the mousedown, so you need to set the init state and then handle changes through mouseup:
HTML
|
||||
|
|
There is jquery-resize which once included just makes your given line work: http://benalman.com/projects/jquery-resize-plugin/ |
|||
|
|
|
Similar to Epeli's answer I've tried to start on a clean solution to trigger a resize() event on mousedown: http://jsfiddle.net/cburgmer/jv5Yj/3/ However it only works with Firefox as Chrome doesn't seem to trigger mousedown on the resize handler. However it does trigger mouseup. |
|||
|
|