As of August 2020 the site you are on (wiki.newae.com) is deprecated, and content is now at rtfm.newae.com. |
MediaWiki:Common.js
From ChipWhisperer Wiki
Revision as of 13:41, 20 January 2017 by Dsevastian (Talk | contribs)
Note: After saving, 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)
- Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Clear the cache in Tools → Preferences
/* 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> */
$(function() {
$('.playground').append('<a class="toggle-states">Show/Hide All</a>');
});
$(".toggle-states").on('click','a', function(){
$(this).toggleClass('checked').siblings().removeClass('checked');
})