Jump to content

MediaWiki:Gadget-censor.js

From Horse Bar Lobster
Revision as of 00:28, 16 May 2025 by Wooferz (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
$(function () {

$("body").children().each(function () {
    $(this).html( $(this).html().replace("job","j*b") );
    $(this).html( $(this).html().replace("Job","J*b") );

    $(this).html( $(this).html().replace("work","w*rk") );
    $(this).html( $(this).html().replace("Work","W*rk") );

});



});