MediaWiki:Common.js
Jump to navigation
Megjegyzés: közzététel után frissítened kell a böngésződ gyorsítótárát, hogy lásd a változásokat.
- Firefox / Safari: tartsd lenyomva a Shift gombot és kattints a Frissítés gombra a címsorban, vagy használd a Ctrl–F5 vagy Ctrl–R (Macen ⌘–R) billentyűkombinációt
- Google Chrome: használd a Ctrl–Shift–R (Macen ⌘–Shift–R) billentyűkombinációt
- Internet Explorer / Edge: tartsd nyomva a Ctrl-t, és kattints a Frissítés gombra, vagy nyomj Ctrl–F5-öt
- Opera: Nyomj Ctrl–F5-öt
document.body.onload = addElement; function addElement() { // create a new div element const newDiv = document.createElement("div"); // and give it some content const newContent = document.createTextNode('<img alt="FacebookLogo.png" src="/images/thumb/9/9d/FacebookLogo.png/80px-FacebookLogo.png" decoding="async" width="80" height="80" srcset="/images/thumb/9/9d/FacebookLogo.png/120px-FacebookLogo.png 1.5x, /images/thumb/9/9d/FacebookLogo.png/160px-FacebookLogo.png 2x">'); // add the text node to the newly created div newDiv.appendChild(newContent); // add the newly created element and its content into the DOM const currentDiv = document.getElementById("mirage-sitename"); document.body.insertBefore(newDiv, currentDiv); }