Guest User

Untitled

a guest
Feb 16th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function autosize(textarea) {
  2. $(textarea).height(1);
  3. $(textarea).height($(textarea).prop("scrollHeight"));
  4. }
  5.  
  6. $(document).on("input", "textarea", function() {
  7. autosize(this);
  8. });
  9.  
  10. $("textarea").each(function () {
  11. autosize(this);
  12. });
Add Comment
Please, Sign In to add comment