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;
});
}
});
});