jquery.autoSizeTextArea.js 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package jquery.autoSizeTextArea.js --version 1.0.1
                    
NuGet\Install-Package jquery.autoSizeTextArea.js -Version 1.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="jquery.autoSizeTextArea.js" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="jquery.autoSizeTextArea.js" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="jquery.autoSizeTextArea.js" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add jquery.autoSizeTextArea.js --version 1.0.1
                    
#r "nuget: jquery.autoSizeTextArea.js, 1.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=jquery.autoSizeTextArea.js&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=jquery.autoSizeTextArea.js&version=1.0.1
                    
Install as a Cake Tool

A jQuery plugin to Autosize a textarea whenever a key is released or text is pasted.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.2 3,959 3/28/2015
1.0.1 1,280 3/28/2015
1.0.0 1,341 3/27/2015

1. Removed the input event bind because with <= IE9 it doesn't detect backspace or delete. Also, it was causing double the work because it is fired whenever keyup is fired.
2. The previous paste event bind was useless because at the time of the event, the text hasn't changed. A 100ms delay has been added to ensure the text is there.
3. Added a cut event bind, because of the removal of the input event bind. This also has a 100ms delay.