Thursday, 1 March 2012

Onfocus event

<html>
<head>
<script type="text/javascript">
function msg()
{
alert("onfocus alert");
}
</script>
</head>
<body>
<form>
Enter your class name<input type="text" onfocus="msg()" size="20">
</form>
</body>
</html>

No comments:

Post a Comment