PrzykÂład 4. Otwieranie dodatkowego okna przeglÂądarki (otwiera siĂŞ nowa strona) po wpisaniu poprawnego hasÂła.
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title> PrzykÂład 1</title>
</head>
<body>
<input type="text" id="adam">
<button id="uruchom">WprowadÂź hasÂło</button>
<script>
function wczytaj(){
var a=document.getElementById('adam').value;
if(a=="Dziamdzia")
{window.open('
http://onet.pl','_blank','resizable=yes');}
else {alert("ZÂły kod");}
}
document.getElementById('uruchom').addEventListener('click',wczytaj);
</script>
</body>
</html>