Skip to content

Instantly share code, notes, and snippets.

@augustovictor
Created February 23, 2012 03:14
Show Gist options
  • Save augustovictor/1889747 to your computer and use it in GitHub Desktop.
Save augustovictor/1889747 to your computer and use it in GitHub Desktop.
Autogrow textarea
var heightScroll = $("textarea").get(0).scrollHeight; //Receives scroll height
var heightTextarea = $("textarea").height(); //Receives textarea height
var height = heightTextarea;
for(height; heightScroll > heightTextarea; height++) {
heightTextarea = height; //Textarea height receives the current height
$("textarea").css("height", height); //Textarea height receives the height value changed
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment