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.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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();
    }
});