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
Dsevastian (Talk | contribs) |
Dsevastian (Talk | contribs) |
||
Line 12: | Line 12: | ||
$(function() { | $(function() { | ||
− | $('.playground').append('<a | + | $('.playground').append('<a class="toggle-states">Show/Hide All</a>'); |
}); | }); | ||
+ | |||
+ | $(".toggle-states").on('click','a', function(){ | ||
+ | $(this).toggleClass('checked').siblings().removeClass('checked'); | ||
+ | }) |
Revision as of 13:41, 20 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> */
$(function() {
$('.playground').append('<a class="toggle-states">Show/Hide All</a>');
});
$(".toggle-states").on('click','a', function(){
$(this).toggleClass('checked').siblings().removeClass('checked');
})