Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
function toccopy() { | function toccopy() { | ||
var tocelement = $('#toc').clone(); | var tocelement = $('#toc').clone(); | ||
+ | tocelement.attr('id','sidetoc'); | ||
$('#mwpanel').append(tocelement); | $('#mwpanel').append(tocelement); | ||
} | } | ||
toccopy(); | toccopy(); |
Revision as of 16:00, 11 August 2017
/* Any JavaScript here will be loaded for all users on every page load. */ function toccopy() { var tocelement = $('#toc').clone(); tocelement.attr('id','sidetoc'); $('#mwpanel').append(tocelement); } toccopy();