1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| <html>
<head>
<title>Test</title>
</head>
<body>
<script type="text/javascript" language="javascript">
var fenetre_toto;
var fenetre_titi;
window.onunload = function () {
fenetre_toto.close();
fenetre_titi.close();
}
</script>
<button onclick="fenetre_toto=window.open ('test.html', 'popup', config='height=600, width=800, toolbar=no, menubar=no, scrollbars=yes, resizable=no, location=no, directories=no, status=no');">Popup1</button><br>
<button onclick="fenetre_titi=window.open ('test.html', 'popup2', config='height=600, width=800, toolbar=no, menubar=no, scrollbars=yes, resizable=no, location=no, directories=no, status=no');">Popup2</button>
</body>
</html> |
Partager