sexta-feira, 17 de abril de 2009

Desativar botão direito do Mouse

A função abaixo, em javascript, desativa o botão da direita do Mouse em todos os Browsers(IE7, FF 3, Chrome)

function click() {
if (event.button==2||event.button==3) {
oncontextmenu='return false';
}
}
document.onmousedown=click
document.oncontextmenu = new Function("return false;")

Nenhum comentário:

Postar um comentário

Linux bash file returns unexpected token `$'do\r''

open file in vi edit with   vi filename.sh   command; type in vi  :set ff=unix  command; save file with  :wq It will save the file with unix...