Hai guys,
I want the the code to disable Left Mouse button with out Alert message.
Below code i am having
i am having the above code with alert mesage.so can any one disable the alert message form the above code ? or send some other code for disable left mouse button with out alert message.
It's urgent.
Thanks,
Nagesh.
I want the the code to disable Left Mouse button with out Alert message.
Below code i am having
Code:
<!-- This code is for disableing left click-->
<script language="javascript">
function noClick() {
if (event.button==1) {
alert('You cannot click')
}
}
document.onmousedown=noClick
</script>
It's urgent.
Thanks,
Nagesh.
Comment