<html>
<head>
<script>
function inputFocused(){
alert("Girdi odakland�: ");
}
function inputBlurred(){
alert("Girdi buland�: ");
}
</script>
</head>
<body >
<h1>JavaScript Odak</h1>
<input type="text" onblur="inputFocused()" ></input><br/>
<br/>
<input type="text" onfocus="inputBlurred()" ></input>
</body>
</html>
Dosyayı İndir