Skip to content

A jQuery plugin which provides a countdown of text in an input field.

License

GPL-2.0, MIT licenses found

Licenses found

GPL-2.0
LICENSE-GPL
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

jimbocoder/textCounter.js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

textCounter.js

TextCounter is a jQuery plugin which provides a countdown of text in an input field. Inspired by the way Twitter counts down the remaining characters in a tweet, textCounter is a configurable jQuery plugin that easily allows anyone to add this same functionality. Written with best practices in mind, textCounter offers multiple character count ranges, custom coloration via CSS classes, and even the ability to prevent users from exceeding the character count limit.

Example

View a simple demo of textCounter

Quick start

Clone the git repo - git clone https://github.com/commadelimited/textCounter.js.git - or download it

Usage & Documentation

$(function(){
	$('#theCounter').textCounter({
		target: '#myTextarea' // required: string
	});
});

$(function(){
	$('#theCounter').textCounter({
		target: '#myTextarea', // required: string
		count: 70, // optional: if string, specifies attribute of target to use as value
		           //           if integer, specifies value. [defaults 140]
		alertAt: 20, // optional: integer [defaults 20]
		warnAt: 10, // optional: integer [defaults 0]
		stopAtLimit: false // optional: defaults to false
	});
});

Contributing

You are invited to contribute code and suggestions to this project. The more the merrier.

Project Info / License

3rd party libraries required:

  • jQuery: MIT/GPL license

Custom bits:

MIT GPL

About

A jQuery plugin which provides a countdown of text in an input field.

Resources

License

GPL-2.0, MIT licenses found

Licenses found

GPL-2.0
LICENSE-GPL
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%