tags-input icon indicating copy to clipboard operation
tags-input copied to clipboard

:bookmark: <input type="tags"> like magic

Results 14 tags-input issues
Sort by recently updated
recently updated
newest added

Attaching addTag() method to base object and returns base object after init. This will allow adding tags via script in addition to manual inputs.

When press "ö" character in Turkish keyboard that pretending ENTER key. "ö" key code is 188 and that key code had defined for COMMA in tags-input.js.

[In your code](https://github.com/developit/tags-input/blob/master/src/tags-input.js#L7) you use key codes to determine which key was pressed. But on Russian keyboard layout we have letter `б` on 188th key code. For example, if I...

I know this repo isn't maintained anymore but having a long placeholder seems to get cut off. Changing the width to 100% seems to solves this.

Small change which allows developers to programmatically get the current list of tags. Specially useful if the input isn't going to be submitted by the browser and, instead, is going...

it's still comma by default but you can pass `{ separator: ' ' }` or `{ separator: ':' }` as an option argument when creating `tags-input`

example - "!CoolTag:]

that updates the tag list when the value of the underlying input is changed by an external source. I needed a way to change the value of the tags from...

Fixes #20 and #21 to ensure that tags that don't get added if they mismatch with the pattern attribute. This is just what @mikemaccana had but does not rely on...