MediaWiki
Group-Grouse.js: Difference between revisions
From Grouse House Wiki
No edit summary |
No edit summary |
||
Line 10: | Line 10: | ||
var $editsection = $( $secondheader ).next().children('a').attr("href"); | var $editsection = $( $secondheader ).next().children('a').attr("href"); | ||
$header.after('[Edit]').css( 'font-size', '0.6em').css( 'margin-left', '1em'); | $header.after('[Edit]'); | ||
$header.next().css( 'font-size', '0.6em').css( 'margin-left', '1em'); | |||
var $pagename = $('h1#firstHeading').html(); | var $pagename = $('h1#firstHeading').html(); |
Revision as of 02:26, 3 February 2024
$(function() { $('h2.c-header.active span.mw-headline').each(function () { var $header = $(this); var $headername = $header.html(); $headernameu = $headername.split(' ').join('_'); var $secondheader = "#" + $headernameu + "_2"; var $editsection = $( $secondheader ).next().children('a').attr("href"); $header.after('[Edit]'); $header.next().css( 'font-size', '0.6em').css( 'margin-left', '1em'); var $pagename = $('h1#firstHeading').html(); $pagenameu = $pagename.split(' ').join('_'); $toclink = "https://grousehouse.wiki/" + $pagenameu + $secondheader; $("a[href*='" + $secondheader + "']").hide(); }); });