Ver Mensaje Individual
  #5 (permalink)  
Antiguo 07/02/2018, 21:55
pabletein
 
Fecha de Ingreso: julio-2008
Mensajes: 45
Antigüedad: 15 años, 9 meses
Puntos: 1
Respuesta: Bootstrap dejo de funcionar en chrome!!!

Muchas gracias por las ayudas!!!!
DragonXv .. probe las cosas de ese link y me funciono esta:
Código Javascript:
Ver original
  1. $(function() {
  2.        $('a[href*="#"]:not([href="#"])').click(function() {
  3.          if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
  4.            var target = $(this.hash);
  5.            target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
  6.            if (target.length) {
  7.              $('html, body').animate({
  8.                scrollTop: target.offset().top
  9.              }, 1000);
  10.              return false;
  11.            }
  12.          }
  13.        });
  14.      });
Funciona... pero algo diferente ahora (lo hace como de otra forma): el boton inicio no va hasta arriba arriba...se frena un poco antes... y en el FF hace un rebote medio raro (hasta me gusto!).
Gracias!!!!