Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/06/2010, 15:16
Dany_s
 
Fecha de Ingreso: diciembre-2009
Ubicación: Misiones
Mensajes: 867
Antigüedad: 14 años, 11 meses
Puntos: 65
Respuesta: Saber que funcion de toggle se va a ejecutar (jquery)

Código Javascript:
Ver original
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3.   <head>
  4.     <title></title>
  5.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6.     <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
  7. <script>
  8.     $( function (){
  9.  
  10.         $('#id').click( function(){
  11.             $('#id2').slideToggle('fast');
  12.         });
  13.  
  14.         $(document.body).click( function (evt){
  15.             if ( $("#id2").is(":visible") && evt.target.id != "id")
  16.                 $('#id2').slideUp('fast');
  17.         });
  18.  
  19.     });
  20. </script>
  21.     <style>
  22.         #id2{height:30px; width:250px; background:red;}
  23.     </style>
  24.   </head>
  25. <body>
  26.  
  27.     <button id="id">Toggle</button>
  28.     <div id="id2"></div>
  29.  
  30. </body>
  31. </html>