(Página creada con «→Cualquier código JavaScript escrito aquí se cargará para todos los usuarios en cada carga de página: function updatemenu() { if (document.getElementById('responsive-menu').checked == true) { document.getElementById('menu').style.borderBottomRightRadius = '0'; document.getElementById('menu').style.borderBottomLeftRadius = '0'; }else{ document.getElementById('menu').style.borderRadius = '0px'; } }») |
Sin resumen de edición |
||
(No se muestran 3 ediciones intermedias del mismo usuario) | |||
Línea 1: | Línea 1: | ||
/* Cualquier código JavaScript escrito aquí se cargará para todos los usuarios en cada carga de página */ | /* Cualquier código JavaScript escrito aquí se cargará para todos los usuarios en cada carga de página */ | ||
function | |||
/** | |||
* @source https://www.mediawiki.org/wiki/Snippets/Open_specific_links_in_new_window | |||
* @version 2018-09-15 | |||
*/ | |||
$( function () { | |||
$( '#mw-content-text' ).on( 'click', '.newwin > a', function () { | |||
} | var otherWindow = window.open(); | ||
otherWindow.opener = null; | |||
otherWindow.location = this; | |||
return false; | |||
} ); | |||
} ); |
Revisión actual - 17:35 25 ago 2024
/* Cualquier código JavaScript escrito aquí se cargará para todos los usuarios en cada carga de página */ /** * @source https://www.mediawiki.org/wiki/Snippets/Open_specific_links_in_new_window * @version 2018-09-15 */ $( function () { $( '#mw-content-text' ).on( 'click', '.newwin > a', function () { var otherWindow = window.open(); otherWindow.opener = null; otherWindow.location = this; return false; } ); } );