codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script language="javascript" type="text/javascript">
<!--

function Button1_onclick()
{
    var v = window.open("../attendere.htm", "xyz", "left=700,top=25,height=500,width=527,resizable=yes,scrollbars=yes,menubar=yes,status=no,directories=no,location=no,toolbar=yes");
    document.getElementById("form1").submit();
}

// -->
    </script>
</head>
<body>
    <input id="Button1" type="button" value="button" onclick="return Button1_onclick()" />

    <form id="form1" target="xyz" action="a.htm" >
        <input id="Submit1" type="submit" value="submit" />
    </form>
</body>
</html>

Questa pagina apre un popup e poi tenta di inviare il submit di un form.
Mi funziona da sempre, IE, Firefox, Opera, Chrome.

Ho provato oggi con IE11 e non funziona assolutamente

Dove sbaglio?


ciao