Note: After saving, changes may not occur immediately. Click here to learn how to bypass your browser's cache.
  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (Cmd-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (Cmd-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences

For details and instructions about other browsers, see Wikipedia:Bypass your cache.

//<syntaxhighlight lang="javascript">
$(document).ready(function() {
	$( 'div#recentchangesheader' ).delay( 1800 ).slideUp( '400' );
	$( 'div#mw-customcollapsible-hideHeader' ).addClass( 'mw-collapsed' );
});
/* Compact Vector tabs w:User:Edokter/CompactTabs.js */
/*$( document ).ready( function() {*/
/*	$( '.panel > h3' ).replaceWith( '<div>' + .text() + '</div>' );*/
/*	$( '.a-icon-expander' ).prepend( '<i class="a-icon a-icon-expand" id="formatsIcon"></i>' );*/
/*	$( 'a', '#ca-special' ).text( 'Special' );
	$( 'a', '#ca-nstab-user' ).text( 'User' );
	$( 'a', '#ca-talk' ).text( 'Talk' );
	$( 'a', '#ca-proofreadPagePrevLink' ).text( 'Previous page' );
	$( 'a', '#ca-proofreadPageNextLink' ).text( 'Next page' );
	$( 'a', '#ca-proofreadPageScanLink' ).text( 'Image' );
	$( 'a', '#ca-proofreadPageIndexLink' ).text( 'Index' );
	$( 'a', '#ca-addsection' ).text( 'Add' );
	$( 'a', '#ca-viewsource' ).text( 'Source' );
	$( 'a', '#ca-history' ).text( 'History' );
	$( 'a', '#ca-unprotect' ).text( 'Unprotect' );
	$( 'a', '#ca-edit' ).text( 'Edit' );
	$( 'a', '#ca-ve-edit' ).text( 'VE Edit' );
	$( 'a', '#ca-view-foreign' ).text( 'Commons' );
	$( 'a', '#pt-userpage' ).text( '' ).prepend( '<i class="fa fa-home" style="font-size: calc(1rem * 0.8750);"></i>' );
	$( 'a', '#pt-mytalk' ).text( '' ).prepend( '<i class="fa fa-comments-o" style="font-size: calc(1rem * 0.8750);"></i>' );
	$( 'a', '#pt-mysandbox' ).text( '' ).prepend( '<i class="fa fa-desktop" style="font-size: calc(1rem * 0.8750);"></i>' );
	$( 'a', '#pt-preferences' ).text( '' ).prepend( '<i class="fa fa-cogs" style="font-size: calc(1rem * 0.8750);"></i>' );
	$( 'a', '#pt-betafeatures' ).text( '' ).prepend( '<i class="fa fa-beta" style="font-size: calc(1rem * 0.8750);"></i>' );
	$( 'a', '#pt-watchlist' ).text( '' ).prepend( '<i class="fa fa-eye" style="font-size: calc(1rem * 0.8750);"></i>' );
	$( 'a', '#pt-mycontris' ).text( '' ).prepend( '<i class="fa fa-list-alt" style="font-size: calc(1rem * 0.8750);"></i>' );
	$( 'a', '#pt-logout' ).text( '' ).prepend( '<i class="fa fa-sign-out" style="font-size: calc(1rem * 0.8750);"></i>' );
} );
*/
/* Enabling Compact Personal Bar */
/*	mw.loader.load( 'skins.vector.compactPersonalBar' );*/
/*	mw.loader.load( '//tools-static.wmflabs.org/cpb/cpb.js' );*/

$(document).ready(function() {
	$(window).resize(function() {
	$('#viewport').html( "viewport: " + $(window).width() + " x " + $(window).height() );
    var conWidth = parseInt(document.getElementById('mw-content-text').contentWidth);
	$('#conWidth').html( 'contentwidth: ' + conWidth );
    var cliWidth = parseInt(document.getElementById('content').clientWidth);
	$('#cliWidth').html( 'clientwidth: ' + cliWidth );
    var offWidth = parseInt(document.getElementById('content').offsetWidth);
	$('#offWidth').html( 'offsetwidth: ' + offWidth );
	} ).resize(); //Initial call
} );
//window.onload = function() { // removed the name to avoid some IE leaks
//    var cliWidth = parseInt(document.getElementById('content').clientWidth);
//    alert(cliWidth);
//};
//window.onload = function() { // removed the name to avoid some IE leaks
//    var offWidth = parseInt(document.getElementById('content').offsetWidth);
//    alert(offWidth);
//};
//</syntaxhighlight>