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
I have same problem in my project using CodeIgniter and bootstrap here i found the solution and it works.
Just add onsubmit="return false;" in the form, like this:
onsubmit="return false;"