Wikipedia:WikiProject User scripts/Scripts/Edit Top: Difference between revisions

Content deleted Content added
m Protected Wikipedia:WikiProject User scripts/Scripts/Edit Top: javascript page outside user space [edit=sysop:move=sysop]
Amalthea (talk | contribs)
Moved code to subpage Wikipedia:WikiProject User scripts/Scripts/Edit Top.js, to have it importable.
Line 17:
==Installation instructions==
To install the script:
* Go to [[Special:Mypage/monobookskin.js]] and click "Edit this page"
* Add the line<br><code style="margin-left:2em;line-height:3em;padding:1em;border: 1px dashed #2f6fab;">importScript("[[Wikipedia:WikiProject User scripts/Scripts/Edit Top.js]]");</code><br>to your skin script and save
* Copy/Paste the following script into the edit box, and save. Follow the displayed instruction to bypass your browser cache.
* [[WP:BYPASS|Bypass your browser cache]]
A slightly modified version is also available as an includable script at [[User:Gerbrant/edit/top.js|Gerbrant.edit.top]].
 
A slightly modified version is also available as an includable script at [[User:Gerbrant/edit/top.js|Gerbrant.edit.top]].
==Code==
===JavaScript===
<pre>
// This will add an [edit] link at the top of all pages except preview pages and the main page
// by User:Pile0nades
 
// Add an [edit] link to pages
addOnloadHook(function () {
// if this is preview page or generated page, stop
if(
document.getElementById("wikiPreview") ||
document.getElementById("histlegend‎") ||
document.getElementById("difference‎") ||
document.getElementById("watchdetails") ||
document.getElementById("ca-viewsource") ||
window.___location.href.indexOf("/wiki/Special:") != -1
) {
if(window.___location.href.indexOf("&action=edit&section=0") != -1) {
document.getElementById("wpSummary").value = "/* Intro */ ";
}
return;
};
 
// get the page title
var pageTitle = wgPageName;
 
// create div and set innerHTML to link
var divContainer = document.createElement("div");
divContainer.innerHTML = '<div class="editsection">[<a href="/w/index.php?title='+pageTitle+'&action=edit&section=0" title="Edit section: '+pageTitle+'">edit intro</a>]</div>';
 
// insert divContainer into the DOM below the h1
if(window.___location.href.indexOf("&action=edit") == -1) {
document.getElementById("content").insertBefore(divContainer, document.getElementsByTagName("h1")[0]);
}
 
});
</pre>
 
==Usage==