Difference between revisions of "MediaWiki:Common.js"

From Dark Prospects Rules
Jump to navigation Jump to search
Line 7: Line 7:
 
}
 
}
  
function testthisshit () {
+
$( "document" ).ready( function () { toccopy(); } );
    console.log('test');
 
}
 

Revision as of 16:33, 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');
    $('#mw-panel').append(tocelement);
}

$( "document" ).ready( function () { toccopy(); } );