Backboards: 
Posts: 172

ST/ST/HSXTT Greasemonkey script to remove the top header

// ==UserScript==

// @name HSX TT

// @namespace hsxtt

// @description HSX TT

// @include http://www.hsxtt.com/*

// ==/UserScript==
(function() {
var headerLocation = document.evaluate("//div", document, null,

XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
var headerNode = headerLocation.snapshotItem(0);
headerNode.innerHTML = "";
headerNode.removeAttribute("style");
})();


Responses:
Post a message   top
Replies are disabled on threads older than 7 days.