Tengo un problema. ahora cuando detecto que el boton derecho se a pulsado .... como puedo evitar que salga el menu contextual .....
tengo este codigo:
Código:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<body>
<div id="area">
<script type="text/javascript">
var area = document.getElementById('area');
var iframe = document.createElement("iframe");
iframe.className = "iframe";
iframe.style.width = "400";
iframe.style.height = "400";
function init() {
var doc = iframe.contentWindow.document;
doc.designMode = "on";
}
setTimeout(init, 100);
area.appendChild(iframe);
function load() {
iframe.contentWindow.document.addEventListener("click", get, false);
}
function get(e) {
if(e.which == 3) {
alert("Boton derecho");
}
}
window.onload = load;
</script>
</div>
</body>
</html>
Solo funciona bajo Mozilla .... pero bueno, el caso es como eliminar el menu contextual jeje