Difference between revisions of "MediaWiki:Middleclick.js"

From Tycoon Gaming
m
m
 
(2 intermediate revisions by the same user not shown)
(No difference)

Latest revision as of 02:02, 21 February 2021

function start(){
console.log("Middleclick prevention started");
	$(document).mousedown(function(e){
		if ( window.location !== window.parent.location ) { 
			if(e.which === 2 ){
				console.log("Middleclick prevented");
				return false; // Or e.preventDefault()
			}
		}
	});
}
start();