Skip to content

Instantly share code, notes, and snippets.

@taoyag
Created March 20, 2012 15:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save taoyag/2137278 to your computer and use it in GitHub Desktop.
Save taoyag/2137278 to your computer and use it in GitHub Desktop.
jQueryでtextareaの最下部にスクロールする
<script type="text/javascript">
$(document).ready(function() {
var psconsole = $('#console');
psconsole.scrollTop(
psconsole[0].scrollHeight - psconsole.height()
);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment