You can edit almost every page by Creating an account and confirming your email.

MediaWiki:Chameleon.js

From EverybodyWiki Bios & Wiki

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.
$( document ).ready(function() {
	if ($('body.page-Everybodywiki_FAQ').length > 0) {
		$('.card-header').each(function() {
		    $(this).addClass("collapsed");
		});
    };
	
	var faqCheckbox = $('#faqCheckbox');
	var faqCheck = false;
	faqCheckbox.click(function() {
		console.log('click');
		if (faqCheck == false) { faqCheckbox.text("☑"); faqCheck = true; }
		else { faqCheckbox.text("🟦"); faqCheck = false; }
		$('#faqCheckboxDiv').toggle();
	});
});

This page "Chameleon.js" is from Wikipedia if otherwise notified.