_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:Invisible Guy/Div.js

In today's world, User:Invisible Guy/Div.js is a topic that covers a large number of aspects and is present in all areas of our lives. Whether in the workplace, social, cultural or personal sphere, User:Invisible Guy/Div.js plays a fundamental role in our society. It is important to understand its implications and its impact on our lives, as well as the different perspectives that exist on User:Invisible Guy/Div.js. In this article, we will explore the different facets of User:Invisible Guy/Div.js and how it affects our daily lives.
//*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 ]'
});
	
}
$( 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();}{
            }
            

        } );
});