Bugs and feature requests
Found a problem on B3ta? Want other features that we don't currently offer? Type your ideas here with your finger-mouths. (We don't promise we'll act on any of it, but we will read it and your words could even prompt us into action.)
( , Wed 1 Nov 2006, 11:48)
Found a problem on B3ta? Want other features that we don't currently offer? Type your ideas here with your finger-mouths. (We don't promise we'll act on any of it, but we will read it and your words could even prompt us into action.)
( , Wed 1 Nov 2006, 11:48)
« Go Back
could everyone who wants a link to offtopic in the nav bar please use Firefox and greasemonkey and stop fucking whining?
ta.
( , Thu 28 Mar 2013, 23:20, 7 replies, latest was 12 years ago)
var navbar = document.getElementById("navbar");
if (navbar != null) {
var navAnchors = navbar.getElementsByTagName("a");
if (navAnchors != null) {
var faqAnchor = navAnchors[navAnchors.length -3]
var barText = document.createTextNode(" | ");
var otAnchor = document.createElement("a");
otAnchor.href = "/questions/offtopic/";
otAnchor.innerHTML = "OT";
faqAnchor.parentNode.insertBefore(otAnchor, faqAnchor.nextSibling);
faqAnchor.parentNode.insertBefore(barText, faqAnchor.nextSibling);
}
}
ta.
( , Thu 28 Mar 2013, 23:20, 7 replies, latest was 12 years ago)
and yet here I am making Firefox do exactly what I want it to do
go figure
( , Fri 29 Mar 2013, 4:56, Reply)
go figure
( , Fri 29 Mar 2013, 4:56, Reply)
same script works in Opera
but you're welcome to try getting IE to do it I suppose
( , Fri 29 Mar 2013, 5:03, Reply)
but you're welcome to try getting IE to do it I suppose
( , Fri 29 Mar 2013, 5:03, Reply)
« Go Back