i want to disable the click event of the mouse wheel without using the alert() popup of javascript.
scenario is on a webpage we press the mouse scroll wheel button and then move and down by rolling the mouse.
i've done it with the alert message, which is
code is
<script>
onmousedonwn = stop;
function stop()
{
if(event.button == 4 )
alert("middle mouse button");
}
</script>
plz help its urgent...