Ver Mensaje Individual
  #4 (permalink)  
Antiguo 14/09/2012, 21:42
opzina
 
Fecha de Ingreso: marzo-2008
Mensajes: 1.020
Antigüedad: 16 años, 8 meses
Puntos: 21
Respuesta: Mostrar/ocultar contenido DIV

Opción jQuery =

Código HTML:
Ver original
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <meta charset="UTF-8">
  4.  
  5.  
  6. <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.1.js"></script>
  7.  
  8. <script type="text/javascript">
  9.  
  10. $(function() {
  11.    
  12.     $('.elem').hide();
  13.     $('.buttons').each(function(i) {
  14.         obj = $(this);
  15.        
  16.         obj.on('click', function() {
  17.             $('#elem' + i).show().siblings().hide();
  18.         });
  19.        
  20.     });
  21.    
  22. });
  23.  
  24.  
  25. </head>
  26.  
  27. <div id="elements">
  28.     <div id="elem0">Description 1</div>
  29.     <div id="elem1">Description 2</div>
  30.     <div id="elem2">Description 3</div>
  31. </div>
  32.  
  33. <button id="button1" class="buttons">Click 1!</button>
  34. <button id="button2" class="buttons">Click 2!</button>
  35. <button id="button3" class="buttons">Click 3!</button>
  36.  
  37. </body>
  38. </html>
__________________
_