Hi,
Actually my requirement is when i move my mouse on the link, One alert box shoulb be appear and it will count how many times i move on that link. I already written the code in javascript but it didn't reach to my requirement. Please go through the below code and do needful.
<html>
<head>
<title>
Event Handler with multiple statement</title>
<script language="javascript">
count=0
</script>
</head>
<body>
<h1>Evet Handler with multiple statements</h1>
<p><a href="https://imailhyd.satyam.com\owa" ONMOUSEOVER="++count;
"alert('You moved mouse here "++count+" times!')">
Displays the number of times you move your mouse over the link.
</a>
</p>
</body>
</html>
Thanks & Regards,
Jayavardhan.Tummidi