Ever want to just change something at the top of a fairly long article, but don't feel like loading the entire page again like the "Edit this page" link does? Well, now you can do just that, using this wiki user script!scrip border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;"
{|border="1" cellpadding="4" cellspacing="0" style="margin: 1em 1em 1em 0; background: #f9f9f9; border: 1px #aaa solid; border-collapse: collapse; font-size: 95%;"
!Name
!Version
|-
|'''Edit Top'''
|1.01.1
|Allows you to edit just the first section of an article.
|MonoBook
==Installation instructions==
To install the script:
*Visit yourGo userto page. In the address bar, append "[[Special:Mypage/monobookskin.js" to the end of the URL and press enter,]] 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 at [[User:Gerbrant/edit/top.js]].
===JavaScript===
<pre>
// This will add an [edit top] link at the top of all pages except preview pages
// by User:Pile0nades
Now go to any page on Wikipedia and the [edit topintro] link will appear at the top right. This link will load only the "zeroth" section of the article into the edit page. ▼
[[Category:Wikipedia scripts]]
// Add an [edit top] link to pages
function editTopLink() {
// if this is preview page or generated page, stop
if(document.getElementById("wikiPreview") || window.___location.href.indexOf("/wiki/Special:") != -1) return;
// get the page title
var pageTitle = document.title.split(" - ")[0].replace(" ", "_");
// create div and set innerHTML to link
var divContainer = document.createElement("div");
divContainer.innerHTML = '<div class="editsection" style="float:right;margin-left:5px;margin-top:3px;">[<a href="/w/index.php?title='+pageTitle+'&action=edit&section=0" title="'+document.title.split(" - ")[0]+'">edit top</a>]</div>';
// insert divContainer into the DOM before the h1
if(window.___location.href.indexOf("&action=edit") == -1)
document.getElementById("content").insertBefore(divContainer, document.getElementsByTagName("h1")[0]);
if(window.___location.href.indexOf("&action=edit§ion=0") != -1)
document.getElementById("wpSummary").value = "/* Intro */ ";
}
// This code here is useful for calling multiple functions on page load
if(window.addEventListener) window.addEventListener("load", dothese, false);
else if(window.attachEvent) window.attachEvent("onload", dothese);
function dothese() {
// List the functions here
editTopLink(); // calls the edit top script
}
</pre>
==Usage==
▲Now go to any page on Wikipedia and the [edit top] link will appear at the top right. This link will load only the "zeroth" section of the article into the edit page.
|