<!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>
</head>
<body>
<script>
var onblurf = false;
function acmeup() {
if (window.event.keyCode == 9) {
onblurf = true;
} else {
onblurf = false;
}
}
function acme(e) {
if (onblurf) {
alert('fired on tab out');
}
}
</script>
<input type="text" id="txtname" onblur="acme(event);"
onkeydown="acmeup();"
/>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<script>
var onblurf = false;
function acmeup() {
if (window.event.keyCode == 9) {
onblurf = true;
} else {
onblurf = false;
}
}
function acme(e) {
if (onblurf) {
alert('fired on tab out');
}
}
</script>
<input type="text" id="txtname" onblur="acme(event);"
onkeydown="acmeup();"
/>
</body>
</html>
trivedimehulk@gmail.com
No comments:
Post a Comment