MediaWiki:Common.js: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

10 June 2024

  • curprev 12:2712:27, 10 June 2024Winkio talk contribs 610 bytes +610 Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: // Initialises stripes on all zebra tables after page load $(document).ready(function() { $('table.zebra tbody tr:nth-child(even)').addClass('even'); $('table.zebra tbody tr:nth-child(odd)').addClass('odd'); }); // Re do stripes on a table after sort finishes $(document).on('sortEnd.tablesorter', function(event) { var table = $(event.target); if(table.hasClass('zebra')) { $('tbody tr:nth-ch..."