Notă: După salvare, trebuie să treceți peste cache-ul browser-ului pentru a vedea modificările.

  • Mozilla, Google Chrome, Safari, Konqueror: țineți apăsat Shift în timp ce apăsați butonul Reload (sau apăsați Ctrl-Shift-R).
  • Internet Explorer: apăsați Ctrl-F5.
  • Opera: apăsați F5.
/*function titleIcons( $content ) {
	var $icons = $( '.topicon#featured-star, .mw-indicators #mw-indicator-featured, .topicon#protected-icon, .mw-indicators #mw-indicator-protected' );
	$icons
		.addClass( 'titleIcons' )
		.removeClass( 'topicon' );
	if ( document.querySelector('#firstHeading .mw-editsection') ) $icons.insertBefore( '#firstHeading .mw-editsection' ); // check if user has Gadget-EditZeroth activated.
	else {
		if (document.querySelector('#firstHeading small a')) $icons.insertBefore( $('#firstHeading').children().last() ); // check if user has Gadget-wikidata-id activated.
		else $icons.appendTo( '#firstHeading');
	}
	$icons
		.clone().appendTo( '.vector-sticky-header-context-bar-primary' ) // appendTo Sticky Header on Vector 2022;
	    .addClass( 'metadata' );
}
mw.hook( 'wikipage.content' ).add( function titleIconsLoader() {
	$( titleIcons );
} );*/