User:Mandarax/u

Source: Wikipedia, the free encyclopedia.

Things to do




Tools, tips, etc.


To include a tooltip:

<span data-toggle="tooltip" title="The tooltip to display">Normal text (hover over me)</span>

produces: Normal text (hover over me)


To force scripts to load in order: first.js and then second.js:

mw.loader.getScript( "/w/index.php?title=first.js&action=raw&ctype=text/javascript" ).then( function () {
  mw.loader.getScript( "/w/index.php?title=second.js&action=raw&ctype=text/javascript" );
} );

Reference