I have a input text and I apply it typeahead plugin for suggesting items, but when I press enter key on input text it submit form.
How can I prevent form submit using tw
According to the documentation, you can set the option confirmKeys to something else than return (13) :
confirmKeys
$('input').tagsinput({ confirmKeys: [188, 32, 39], });
However, a smarter way to go about this is to prevent sending the form on enter.