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
The best way I've found to approach this is not to use a submit input. Use a button input instead and add some js to submit the form when it's clicked.
$('#my_submit_button').click(function(){ $(this).parents('form').submit(); });