An open API service indexing awesome lists of open source software.

https://github.com/darrentaytay/jquery-character-counter

A simple, Twitter style character counter for HTML input fields.
https://github.com/darrentaytay/jquery-character-counter

character-counter javascript

Last synced: 16 days ago
JSON representation

A simple, Twitter style character counter for HTML input fields.

Awesome Lists containing this project

README

        

# jquery-character-counter

A simple, Twitter style character counter for HTML input fields. Based on your specified limit, the plugin simply adds a span ( by default ) after your HTML input and updates it as you type.

__Features:__
* Ctrl & V paste support
* Right click & paste support
* Customizable wrapper and css classes
* Customizable counter format
* Callbacks for exceeding and deceeding the specified limit

## Getting Started

To get started with the character counter, simply reference jQuery and the jQuery Character Counter plugin in your page.

```html

```

### Examples

#### Default Usage

__HTML:__
```html

```
__Javascript:__
```javascript
$("#count_me").characterCounter();
```

#### Custom Limit

__HTML:__
```html

```
__Javascript:__
```javascript
$("#count_me").characterCounter({
limit: '250'
});
```
***

### Options

The following options are currently available:

```javascript
{
limit: 150,
counterWrapper: 'span',
counterCssClass: 'counter',
counterFormat: '%1',
counterExceededCssClass: 'exceeded',
onExceed: function(count){},
onDeceed: function(count){},
customFields: {}
}
```

__limit__ - the number of characters you wish to limit.
__counterWrapper__ - the element you wish to wrap your counter in.
__counterCssClass__ - the CSS class to apply to your counter.
__counterFormat__ - the format of your counter text where '%1' will be replaced with the remaining character count.
__newLineSymbolCount__ - count new lines
__counterExceededCssClass__ - the CSS class to apply when your limit has been exceeded.
__onExceed__ - this function is called when the limit is breached
__onDeceed__ - this function is called when the limit, having previously been exceeded, is now deceeded
__customFields__ - key value pairs of custom options to be added to the counter such as class, data attributes etc.