Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/09/2010, 13:53
Kleimore
 
Fecha de Ingreso: diciembre-2005
Mensajes: 39
Antigüedad: 18 años, 5 meses
Puntos: 0
Respuesta: Problemas al "cargar" jquery

Tambien me pasaba algo igual a ti

Cambia esto:
Código HTML:
<script>
  $(document).ready(function() {
  $("#tabs").tabs();
  });
  </script> 
Por esto:
Código HTML:
<script>
  $(document).live('ready', function() {
  $("#tabs").tabs();
  });
  </script> 
Aver que tal te funciona :)