MediaWiki:Gadget-censor.js: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 3: | Line 3: | ||
$("body").children().each(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("Job","J*b") ); | |||
$(this).html( $(this).html().replace("work","w*rk") ); | |||
$(this).html( $(this).html().replace("Work","W*rk") ); | |||
}); | }); | ||
Revision as of 00:28, 16 May 2025
$(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") );
});
});