Submit button wont fire in different browsers

Submit button wont fire in different browsers

In Firefox and Chrome the submit button won't fire when I have the tags like this

<table border="1">
<form action="ff_meal_edit.php" data-ajax="false"  method="post" name="edit_meals" id="edit_meals">
</form>
</table>

But it will fire in IE.

However when I switch the tags like this:
<form action="ff_meal_edit.php" data-ajax="false"  method="post" name="edit_meals" id="edit_meals"><table border="1">
</table>
</form>
The reverse is true. Does anyone know why? I am using the latest version of jquerymobile. When I turn JqueryMobile off the problem goes away.