blogs.msdn.com-comment-hash-scrollTo

Support scrolling down to comments loaded by JavaScript on blogs.msdn.com which is broken on most things other than IE.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name           blogs.msdn.com-comment-hash-scrollTo
// @version        0.0
// @namespace      http://userscripts.org/users/484734
// @require        https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
// @description    Support scrolling down to comments loaded by JavaScript on blogs.msdn.com which is broken on most things other than IE.
// @include        http://blogs.msdn.com/b/*
// @include        https://blogs.msdn.com/b/*
// ==/UserScript==
this.jQuery = jQuery.noConflict(true);
// scope is to “this”? Hopefully
jQuery(window).load(function() {
    if (location.hash && location.hash.length > 1)
    {
	var elem = jQuery(location.hash + ', *[name="' + String(location.hash).substring(1) + '"]')[0];
	elem = elem.wrappedJSObject || elem;
	elem.scrollIntoView();
    }
});