Questo codice crea conflitto con un altro, ho provato a spostarlo ma è uguale. Non c'è un modo per trasformarlo magari in JS in modo che non crei conflitto?
Codice HTML:// Fa saltare lentamente in basso sino alla fine degli articoli
jQuery(document).ready(function($) {
$("a").on('click', function(event)
{
if (this.hash !== "") {
event.preventDefault();
var hash = this.hash;
$('html, body').animate(
{
scrollTop: $(hash).offset().top
}, 1000, function() {
window.location.hash = hash;
});
}
});
});