Sota_de_espadas
Vampiro blanco
- Desde
- 30 Ene 2007
- Mensajes
- 11.963
- Reputación
- 19.655
El puñetero @Delco ha dado con la solución en este jilo:
Jaque mate a querido líder
Os bajáis el Tampermonkey y pegáis esto en un nuevo script
Y en configuración del script que se cargue en el document end.
Para el Greasemonkey:
Jaque mate a querido líder
Os bajáis el Tampermonkey y pegáis esto en un nuevo script
Java:
// ==UserScript==
// @name Burbuja
// @include https://www.burbuja.info/*
// @version 1
// @require https://code.jquery.com/jquery-1.9.1.min.js
// ==/UserScript==
var target = window.location.hash,
target = target.replace('#', '');
window.location.hash = target;
$(window).on('load', function() {
if (target) {
$('html, body').animate({
scrollTop: $("#" + target).offset().top
}, 700, 'swing', function () {});
}
});
Y en configuración del script que se cargue en el document end.
Para el Greasemonkey:
Java:
// ==UserScript==
// @name Burbuja
// @include https://www.burbuja.info/*
// @version 1
// @require https://code.jquery.com/jquery-1.9.1.min.js
// @run-at document-end
// ==/UserScript==
var target = window.location.hash,
target = target.replace('#', '');
window.location.hash = target;
$(window).on('load', function() {
if (target) {
$('html, body').animate({
scrollTop: $("#" + target).offset().top
}, 700, 'swing', function () {});
}
});