Hi,
I'm triyng to disable the view source menu and right click mouse on my site, but i can only disable right click mouse. I'm using this function to do it
function noRightClick() {
if (event.button==2) {
alert('Não pode efectuar o click na tecla da direita do rato! :-)')
}
}
document.onmousedown=noRightClick
and this one works perfectly but i just don't know how to do the rest.
Can any one help me ?
Thanks
Sandra