
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

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)

go figure
( , Fri 29 Mar 2013, 4:56, Reply)

but you're welcome to try getting IE to do it I suppose
( , Fri 29 Mar 2013, 5:03, Reply)
« Go Back