Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/03/2014, 15:26
Avatar de kakashi20
kakashi20
 
Fecha de Ingreso: septiembre-2009
Mensajes: 616
Antigüedad: 14 años, 7 meses
Puntos: 15
Exclamación error hover jquery

hola

estoy probando el hover de jquery y tengo este codigo sencillo y el problema es que no hace nada...

Código Javascript:
Ver original
  1. <script type="text/javascript" src="js/jquery-1.9.0.js"></script>
  2.  
  3. <script>
  4.  
  5. $("#op1").hover(
  6.  
  7.     function() {
  8.         alert("entro");
  9.        
  10.     },
  11.     function(){
  12.         alert("no entro");
  13.    }
  14.  
  15. );
  16.  
  17. </script>

Código HTML:
Ver original
  1. <div id="op1">QUIENES SOMOS</div>


Si alguien me pudiese ayudar se lo agradeceria