GithubHelp home page GithubHelp logo

cornerman / autoresize-textarea Goto Github PK

View Code? Open in Web Editor NEW

This project forked from alex1990/autoresize-textarea

0.0 2.0 0.0 42 KB

A jQuery (optional) plugin can automatically resize the textarea's height.

Home Page: http://Alex1990.github.io/autoresize-textarea

License: MIT License

JavaScript 100.00%

autoresize-textarea's Introduction

autoresize-textarea

A jQuery (optional) plugin can automatically resize the textarea's height.

Note: You can use Lea Verou's stretchy if you don't intend to support IE6-8.

Usage

HTML:

<textarea id="description"></textarea>

CSS:

#description {
  padding: 3px;
  height: 24px;
  font-size: 16px;
  line-height: 24px;
  overflow: hidden;
  resize: none;
}

Note: Do not set transition property for the textarea.

In most cases, it will be as a jQuery plugin.

$('#description').autoResize();

It returns an object which contains a reset method to detach the bound events on textarea. So, the textarea will be changed to a normal textarea.

var autoresizeObj = $('#description').autoResize();
autoresizeObj.reset();

If there isn't the jQuery object on global object, it will expose an autoResize() method to global object.

autoResize( document.getElementById('description') );

And, this plugin can be used as a CommonJS/AMD module. You can see the demos in example folder for more details.

Package

You can use npm or bower to install it.

NPM:

npm install autoresize-textarea

Bower:

bower install autoresize-textarea

Options

You can pass an configurable object as the first parameter. If you passed a function as the first parameter, it will be treated as onresizeheight option.

  • maxHeight

    Type: Number Default: undefined

    When the height of textarea is greater than maxHeight, the maxHeight will be as the height, and the overflow-y will be set to auto.

  • onresizeheight

    Type: Function Default: undefined

    When the textarea's height is changed, this callback will be called. In onresizeheight callback, this refer to the textarea element and the first argument is the current numeric height of the textarea.

Events

(Only for as a jQuery plugin)

When the textarea's height is changed, a named autoresize:height event will be triggered on textarea element and the current height of textarea will be passed as the second parameter of the event listener.

Compatibility

Tested in IE6+ (including compatibility mode) and other modern browsers.

IE drawbacks:

  • In IE7 (simulated by IE9), IE10 (simulated by IE11), IE11, the content will jump up and down when a newline is seen. For example, press the "Enter" key.
  • In IE7/8 (simulated by IE11), the scrollHeight will increase a few pixels after typing a character in a blank line (without any character).
  • In IE9 and IE7/8 (simulated by IE9), for example/basic.html example, when the value of padding is less than 5 pixels, the textarea will move up about 1 pixel after first newline.

Thanks to

  • The dottoro reference helps me get some key details about scrollHeight and oninput/onpropertychange/onpaste events.

  • A Ben Alpert's article - A near-perfect oninput shim for IE 8 and 9, makes me understand how to use the onselectionchange event.

  • The AutoResize plugin commited in 2011 provides another solution. I refer to the part of it.

License

Under the MIT license.

autoresize-textarea's People

Contributors

alex1990 avatar cornerman avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.