I'm using XOXCO Tags-Input.
Here is a demo http://xoxco.com/projects/code/tagsinput/example.html
So in order to complete a tag i have to hit enter but when i hit enter it submits my form.
I can disable enter for the whole form with this code but then i can't complete a tag.
$("#form").keypress(function(e) {
//Enter key
if (e.which == 13) {
return false;
}
});
So i still need enter to work but i also need it to not submit the form and i'm not sure how to do that.