1 to 5 of 5
Looks like a JavaScript issue
I guess IE treats the button tag as the submit button, so it would expect false to prevent the original form submission from happening.
function submitAndClosePopup() {
document.forms[0].submit();
window.close();
return false;
}
1 to 5 of 5