Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/b00gizm/fm-tags
jQuery Plugin for Last.FM-like tag input fields
https://github.com/b00gizm/fm-tags
Last synced: 3 days ago
JSON representation
jQuery Plugin for Last.FM-like tag input fields
- Host: GitHub
- URL: https://github.com/b00gizm/fm-tags
- Owner: b00giZm
- Created: 2011-02-05T17:07:30.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2011-02-05T17:31:52.000Z (almost 14 years ago)
- Last Synced: 2023-03-10T22:41:53.494Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 101 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
fm-tags is a jQuery plugin for adding a tagging input field to your site. It looks and behaves like the tag input fields found at [LastFM](http://www.last.fm).
Key features
============* a nice UI for tag management
* key-bindings for full keyboard control
* (basic) auto completion
* custom javascript callbacks
* other customization optionsRequirements
============jQuery >= 1.3.2
Usage example
=============$(document).ready(function() {
$('.tagger').fmtag({
autocompleteData: ['github', 'awesome', 'jquery', 'iPhone', 'iPad', 'iPod'],
onChange: function(tagList) {
// Do stuff ...
}
});
});
Notes
=====For auto completion, you can provide a Javascript Array with all possible tags as strings.
No Ajax love involved yet, - as I told you, it's still very basic ;)