As of August 2020 the site you are on (wiki.newae.com) is deprecated, and content is now at rtfm.newae.com.

Difference between revisions of "MediaWiki:Common.js"

From ChipWhisperer Wiki
Jump to: navigation, search
(Created page with "Any JavaScript here will be loaded for all users on every page load.: ")
 
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
 +
 +
//Global Show/Hide
 +
//Author: Princess Platinum
 +
 +
$(function() {
 +
    $('#collapse-global').html('<a class="wikia-button" onclick="for (var i=0; i < 100; i++) { collapseTable([i]); }">Show/Hide All</a>');
 +
});
 +
 +
/* To make button appear put this here <div id="collapse-global">Loading...</div> */

Revision as of 06:23, 19 January 2017

/* Any JavaScript here will be loaded for all users on every page load. */

//Global Show/Hide
//Author: Princess Platinum
 
$(function() {
    $('#collapse-global').html('<a class="wikia-button" onclick="for (var i=0; i < 100; i++) { collapseTable([i]); }">Show/Hide All</a>');
});

/* To make button appear put this here <div id="collapse-global">Loading...</div> */