Issue summary: Chrome requires hitting 'Enter' twice before submitting my form.
The gory details: I have a form. Its action is:
action="javascript: Search();"
I have a text input in my form. I type something in this textbox. I press enter. Search() is called.
Search() calls:
alert('A')
doPost(document.formName,'Search.php')
alert('B')
doPost(form,url) calls:
form.action=url
alert('C')
form.submit()
alert('D')
Now, the problem. FF pops up 'A', then 'C', then submits the form (yay!). Chrome, on the other hand, pops up 'A', then 'C', then 'D', then 'B', but no form submission (Boo!). Then, in frustration, I hit 'Enter' again in Chrome. form.submit() is called successfully (without any of the pop ups).
Why is Chrome not submitting my form on the first attempt?