User:Invisible Guy/Div.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
This user script seems to have a documentation page at User:Invisible Guy/Div. |
//*STOP* This script is made for user talks, just to restore </div> tag
//Few tests and improvement remaining, It may cause harm!
function divfix(){
var one= document.editform.wpTextbox1.value;
one=one.replace("</div>","");
one=one.replace("</div>","");
one=one+"</div></div>";
function editPages( info ) {
$.ajax({
url: mw.util.wikiScript( 'api' ),
type: 'POST',
dataType: 'json',
data: {
format: 'json',
action: 'edit',
title: info.title,
text: info.text, // will replace entire page content
summary: info.summary,
token: mw.user.tokens.get( 'editToken' )
}
})
.done (function( data ) {
if ( data && data.edit && data.edit.result && data.edit.result == 'Success' ) {
alert( 'Page edited!' );
} else {
alert( 'The edit query returned an error. =(' );
}
})
.fail ( function() {
alert( 'The ajax request failed.' );
});
}
editPages({
title: wgPageName,
text: one,
summary: 'Closed div using [[User:Invisible Guy/Div|Div Closer]]'
});
}
$( document ).ready( function () {
var link = mw.util.addPortletLink( 'p-cactions', '#', 'Close div', 'It moves div closing tag at last');
$( link ).click( function ( event ) {
if (confirm('This script tries to close <div> tag of page, which could be harmful sometimes! Continue?')){
divfix();}{
}
} );
});