Ver Mensaje Individual
  #3 (permalink)  
Antiguo 05/01/2013, 12:36
Avatar de David
David
Moderador
 
Fecha de Ingreso: abril-2005
Ubicación: In this planet
Mensajes: 15.720
Antigüedad: 19 años, 7 meses
Puntos: 839
Respuesta: Salto incomodo slideDown slideUp internet explorer 7

¿Y si facilitas el efecto?:
Código HTML:
Ver original
  1. <button type="button" id="boton">slideDown()</button>
  2. <button type="button" id="boton2">slideUp()</button>
  3. <div style="width:300px;height:60px;overflow:hidden;float:right">
  4.     <div id="uno" style="background:red;height:60px"></div>
  5.     <div id="dos" style="clear:both;background:blue;height:60px"></div>
  6. </div>
Código Javascript:
Ver original
  1. $(document).ready(function(){
  2.     $('#boton').click(function(){
  3.         $('#uno').slideDown();
  4.     });
  5.  
  6.     $('#boton2').click(function(){
  7.         $('#uno').slideUp();
  8.     });
  9. });
__________________
Por favor, antes de preguntar, revisa la Guía para realizar preguntas.