============================================================================
tagger.js v0.0.1
jQuery plugin to create and manage tags
requires - taggerStyles.css and jquery.js
**For Demo check: ** taggerDemo.html
✦ Create tags on the go - features
✔ Checks for duplicate tags and display fade-In/Out message
- which makes it less annoying - Message text can be easily changed by passing option msg
- Want even less annoynance - of course you can pass theshowMsgasfalse
✔ Customization Options
✔ Editable Tags
✔ Option to Finish the tag addition/edition by clicking **Done** button
✦ Default mode:
$('elementOrSelector').tagger();
✦ Passing Options by overriding Default settings (change as required):
'box' : {
'width' : '500px',
'minHeight' : '90px'
},
'tag' : {
'bgColor' : '#161d6d',
'fontColor' : '#ffffff'
},
'tagProperty' : {
'minLength' : '1'
},
'duplicateMsg' : {
'showMsg' : 'true',
'message' : ' Oooppsss!!!
Seems You Already Have That Tag.
',
'bgColor' : '#e3e18a'
}