ちょっとした機能
Per
Dit script moet niet direct worden geïnstalleerd - het is een bibliotheek voor andere scripts om op te nemen met de meta-richtlijn // @require https://update.greasyfork.org/scripts/419955/889418/y_method.js
// ==UserScript==
// @name y_method
// @version 0.1
// @description ちょっとした機能
// @author y_kahou
// ==/UserScript==
if (window.jQuery) (function($) {
/**
* 対象までスクロールせずにクリックする
*/
$.fn.click_ = function() {
var x = window.scrollX, y = window.scrollY
this.click()
window.scrollTo(x, y)
return this
}
/**
* 対象までスクロールせずにフォーカスする
*/
$.fn.focus_ = function() {
var x = window.scrollX, y = window.scrollY
this.focus()
window.scrollTo(x, y)
return this
}
})(window.jQuery);