There is a solution to the problem of duplicate submissions in the Enter submission form under IE
Just return false after submit(). Such as:
document.formname.submit();
return false;
Be careful in the future
Another approach was tried later:
if ($("#formid").validationEngine("validate")){
document.getElementById("formid").submit();
}
That’s ok