I have used jQuery tagit which will accept email addresses. I have validated tags for email format. I want to know if it can also edit the tags if user has typed something wrong. Right now we have to remove the tag and reenter if something goes wrong.
Thanks in Advance
$("#singleFieldTags").tagit({
singleField: true,
singleFieldNode: $('#mySingleField'),
beforeTagAdded: function (event, ui) {
//email validation code
}
});
<ul id="singleFieldTags"></ul>
<input id="mySingleField" />