in HTML5, there is the form attribute. Basically
Well, IE basically does not support form attribute in input, but you could use javascript to submit your form:
document.getElementById("myForm").submit();
or jQuery
$("#myForm").submit();