User:Bobogoobo/common.js: Difference between revisions

From NPOWiki
Jump to navigation Jump to search
(create)
 
No edit summary
Line 1: Line 1:
$('#p-tb li:nth-of-type(2)').after(
$(function() {
'<li id="t-prefixindex"><a href="/view/Special:PrefixIndex">Prefix Index</a></li>'
$('#p-tb li:nth-of-type(2)').after(
);
'<li id="t-prefixindex"><a href="/view/Special:PrefixIndex">Prefix Index</a></li>'
);
});

Revision as of 05:13, 2 July 2020

$(function() {
	$('#p-tb li:nth-of-type(2)').after(
		'<li id="t-prefixindex"><a href="/view/Special:PrefixIndex">Prefix Index</a></li>'
	);
});