Abstract
I recently rewrote Textarea Resizer for use with MooTools 1.2. Some people liked to see some extra functionality, and so did I. So, Textarea Resizer version 2 is just finished.
New features

resize width
resize using drag

Usage
Surprisingly, the script works the same:

window.addEvent(’domready’, function() {
new textareaSizer();
});
 
// or with an option passed:
window.addEvent(’domready’, function() {
new textareaSizer(sizeWidth: true);
});

Feel free to check out [...]