sreenath205
Programmer
Hi
I have a button whose onmouseenter event calls a function say "foo",in foo
i need to check whether the left mouse button is pressed or not?
Thanks
Sreenath
Edit/Delete Message
I have a button whose onmouseenter event calls a function say "foo",in foo
i need to check whether the left mouse button is pressed or not?
Code:
<html>
<script>
function foo(){
alert("came")
//How to check here whether the Left button is clicked??
}
</script>
<body>
<input type=button onmouseenter="foo()">
</body>
</html>
Thanks
Sreenath
Edit/Delete Message