Reputation: 23064
I'm using the nifty 'combobox' variant of jQuery UI Autocomplete - see here: http://jqueryui.com/demos/autocomplete/#combobox
I have it within a Form element because its part of a form.
The Autocomplete Combobox has a <button>
that is used to show the whole drop down list. However when the user presses it, the form submits. This appears to be because the <button>
has a type="submit"
attribute. The whole element is created by the button()
call within the .combobox
fn, see source code.
How do I stop it submitting?
(NB: This guy had the same problem but he fixed it by removing the form
- I can't do that)
Upvotes: 0
Views: 2286
Reputation: 23064
Ah, nevermind, I figured it out.
The problem is discussed on the jQuery forum here: http://forum.jquery.com/topic/autocomplete-combobox-problem-when-it-is-placed-inside-a-form-tag
They suggest several different ways of adjusting the source code of the autocomplete combo to fix it. The simplest one seems to be this:
Change the line that says
$("<button> </button>")
to
$("<button type=\"button\"> </button>")
this prevents the type="submit"
from being inserted into the final button.
Upvotes: 3