30/08/2010, 05:00
|
| | Fecha de Ingreso: diciembre-2009 Ubicación: Misiones
Mensajes: 867
Antigüedad: 14 años, 11 meses Puntos: 65 | |
Respuesta: Problema con propagación de eventos en jquery no es esto?
Código HTML:
Ver original<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> $(function (){ $("input[type='button']").keydown(function(e){ if(e.which==13){ $("a").focus(); return false; } }); }) <form action="aaa.aaa" method="get"> <input type="button" value="asd"> <a href="ddd.ddd">asd </a>
|