Why does my form submit in IE but not in Chrome?

firefox, google-chrome, html, http, internet-explorer

Solution

If you are not using any JavaScript for form validation then a simple layout for your form would look like this:

<form action="formHandler.php" method="post">    
 <input name="fname" id="fname" type="text" value="example" />    
 <input type="submit" value="submit" />
</form>

You need to ensure you have the `submit` button within the form element and an appropriate `action` attribute on the `form` element is present.

For a more direct answer, provide the code you are working with.

You may find the following of use: http://www.w3.org/TR/html401/interact/forms.html

Problem

I have a form with `<input type="submit">`. In Chrome submit doesn't do anything. On a Network tab in developer tools I see nothing. No errors in developer tools either. Meanwhile, if I do save a page and open a saved page, then after I press submit button, I see something appears in Network tab. This happens in Chrome and Firefox. This works as expected in IE. Does anybody have a hindsight, what should I look at? I don't need a direct answer, I only need to know, where should I look at. If someone posts a direction and that'll help me to solve my problem, I'll accept it as a correct answer. Structure of a page looks like this: ``` html head body div div form form form form form input input table table tbody tr..td..input type=submit ```

Original source