I would like to use tag-it to make lables all uppercase.
$('#taglabel').tagit({
availableTags: ['this','label1']
});
how do i join preprocessTag method with available tags?
should i use it
$('#taglabel').tagit({
"preprocessTag", function(val) {
if (!val) { return ''; }
return val[0].toUpperCase() + val.slice(1, val.length);
});