Eventos: click y dblclick
Ejemplo
Ejecución del ejemplo
<html> <head> <script type="text/javascript"> addEventListener('load',inicio,false); function inicio() { document.getElementById('recuadro1').addEventListener('click',presion1,false); document.getElementById('recuadro2').addEventListener('dblclick',presion2,false); } function presion1() { alert('se hizo click'); } function presion2() { alert('se hizo doble click'); } </script> </head> <body> <div style="width:200px;height:200px;background:#ffff00" id="recuadro1"> Prueba del evento click </div> <div style="width:200px;height:200px;background:#ff5500" id="recuadro2"> Prueba del evento dblclick </div> </body> </html>
No tiene disponible el navegador la capacidad de iframe
Retornar al menu