MediaWiki:Common.js
/* Es carregarà per a tots els usuaris, i per a qualsevol pàgina, el codi JavaScript que hi haja després d'aquesta línia. */
/**
* @source mediawiki.org/wiki/Snippets/Open_specific_external_links_in_new_window
* @version 3
*/
$(function( $ ) {
$( '#mw-content-text' ).on( 'click', '.newwin > a', function( e ) {
var otherWindow = window.open();
otherWindow.opener = null;
otherWindow.location = this;
return false;
} );
} );