Modificare codice

  • Creatore Discussione Creatore Discussione Shyson
  • Data di inizio Data di inizio

Shyson

Utente Attivo
19 Ago 2012
1.179
1
38
Questo codice mi va in conflitto con un altro, io ho pensato di trasformalo in js, è possibile?

Codice:
jQuery(document).ready(function($) {
 // $("a").on('click', function(event)
  $("a").on('click', '#salta2', function(event)
  {
    if (this.hash !== "") {
      event.preventDefault();
      var hash = this.hash;
      $('html, body').animate(
      {
        scrollTop: $(hash).offset().top
      }, 1000, function() {
        window.location.hash = hash;
      });
    }
  });
});
 

Discussioni simili