Diferencia entre revisiones de «MediaWiki:Common.js»
De EIFA - Estudios Interdisciplinares de las Fuentes Avilistas
Etiqueta: Reversión manual |
Etiqueta: Revertido |
||
Línea 7: | Línea 7: | ||
}()); | }()); | ||
function myFunction() { | |||
alert("Hello World!"); | |||
} | |||
var onClickAttribute = document.createAttribute("onclick"); | |||
onClickAttribute.value="myFunction()"; | |||
var button = document.createElement("button"); | |||
button.setAttributeNode(onClickAttribute); | |||
button.innerHTML = "Say hello"; | |||
if (document.URL === 'http://mywiki.com/w/index.php/User:Pjc/common.js') { | |||
var wikiaArticle = document.getElementById("WikiaArticle"); | |||
wikiaArticle.insertBefore(button, wikiaArticle.firstChild); | |||
} |
Revisión del 13:02 13 ene 2022
/* Cualquier código JavaScript escrito aquí se cargará para todos los usuarios en cada carga de página */
(function () {
var myElement = document.getElementById('mw-hello-world');
myElement.innerHTML = '<html>Hello World!!!</html>';
}());
function myFunction() {
alert("Hello World!");
}
var onClickAttribute = document.createAttribute("onclick");
onClickAttribute.value="myFunction()";
var button = document.createElement("button");
button.setAttributeNode(onClickAttribute);
button.innerHTML = "Say hello";
if (document.URL === 'http://mywiki.com/w/index.php/User:Pjc/common.js') {
var wikiaArticle = document.getElementById("WikiaArticle");
wikiaArticle.insertBefore(button, wikiaArticle.firstChild);
}