Monday, 2 January 2012

onmousedown event

<html>
<head>

<title> creating an event handeler </title>

<script type="text/javascript">

    function mousealert() {
    alert ("You clicked the mouse");
    }
    document.onmousedown = mousealert;
   

</script>

</head>

<body>

</body>

</html>

No comments:

Post a Comment