The JavaScript could have been preventing the form from being submitted. This could have been specific to IE, since if the markup is invalid then browsers tend to behave differently in order to compensate.
Specific errors returned from the W3C validator:
- Line 38, Column 173: document type does not allow element "BODY" here
- Line 56, Column 18: ID "TABLE_01" already defined
- Line 62, Column 81: document type does not allow element "FORM" here
- Line 63, Column 14: document type does not allow element "TR" here
- etc.
The W3C validator at:
http://validator.w3.org/
I've just noticed that you have white space before your DOCTYPE and a DOCTYPE that triggers quirks mode in IE. You should ideally be using a full DOCTYPE - one that triggers standards mode in IE - providing this doesn't break your page!
eg.
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org./TR/html4/loose.dtd">
Bookmarks