Ver Mensaje Individual
  #4 (permalink)  
Antiguo 13/04/2011, 08:36
Dany_s
 
Fecha de Ingreso: diciembre-2009
Ubicación: Misiones
Mensajes: 867
Antigüedad: 14 años, 5 meses
Puntos: 65
Respuesta: hover option select

Código HTML:
Ver original
  1.     <head>
  2.         <title>Ejemplo</title>
  3.         <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
  4.         <script>
  5.  
  6. $( function(){
  7.  
  8.     $('#select option').hover( function(){
  9.         alert("asd");
  10.     });
  11.  
  12. });
  13.     </script>
  14.  
  15.     <style>
  16.  
  17.     </style>
  18.  
  19. </head>
  20.  
  21.  
  22. <select id="select">
  23.   <option>uno</option>
  24.   <option>dos</option>
  25.   <option>tres</option>
  26.   <option>cuatro</option>
  27.  
  28.  
  29. </body>
  30. </html>