Mi pregunta es: ¿como puedo hacer para llamar a una funcion pero cuando el usuario presione el boton derecho del mouse?. Algo como Onclick pero para el boton derecho.....
Gracias.....
| |||
ejecutar funcion con boton derecho Mi pregunta es: ¿como puedo hacer para llamar a una funcion pero cuando el usuario presione el boton derecho del mouse?. Algo como Onclick pero para el boton derecho..... Gracias..... |
| ||||
eso es solo para internet explorer -_-
__________________ Download FireFox |
| ||||
Cita: dude, i love your signature... it's kinda cool!!!
Iniciado por SiR.CARAJ0DIDA eso es solo para internet explorer -_-
__________________ Saruman One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them. |
| |||
Código HTML: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Boton izquierdo?</title> <script type="text/javascript"> boton_izq = function ( ev ) { alert('Jo jo'); // para parar la propagacion del evento en gecko if( ev.stopPropagation ) { ev.preventDefault(); ev.stopPropagation(); } return false; } // atacha los eventos al cargarse la pagina window.onload = function ( ) { html_el = document.getElementsByTagName('html').item(0); if( window.attachEvent ) html_el.attachEvent( 'oncontextmenu', boton_izq ); else if ( window.addEventListener ) html_el.addEventListener( 'contextmenu', boton_izq, false ); } </script> </head> <body> Foros del Web </body> </html> - XHTML 1.0 Strict
__________________ Guillermo Rauch Freelancer |