robert-o
5/17/2017 - 1:36 PM

Textarea resize

Textarea resize

//Add key up attr to form text area
(function($) {
	$('#contact-form textarea').attr('onkeyup', 'textAreaAdjust(this)');
})(jQuery);

//Textarea Auto resizes on blur
function textAreaAdjust(o) {
	o.style.height = "1px";
	o.style.height = (10+o.scrollHeight)+"px";
}