• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

disable left click

I've noticed that if you happen to pour fine salt on the mouse pad it can cripple the whole mouse for at least a week. Sugar doesn't have the same impact at all.
mouse
 
so something like

Code:
<B>pour fine salt on your mouse mat then enter site</B>
should work :confused:

like the piccy :cool:
 
Have you forgot who he is? I think he has some trouble with his feet also.
 
Originally posted by meow
I think he has some trouble with his feet also.
first sensible thing you've ever said :p

too much running around playing football at the weekend. Staring at a screen is so much easier on ones body
 
ref lucifer oldspeak
:rolleyes: how can I do this?
Unclick leftclick goodthink stop :halfblink smilewise:


Originally posted by lucifer
:rolleyes: how can I do this?
Disabling the left mouse button, what a great idea! ;)


Code:
function check(e){
	if(document.all){
		if(event.button==1){
			alert("script ref unclick");
			return false;
		}
	}
	if(document.layers){
		if(e.which==1){
			alert("script ref unclick");
			return false;
		}
	}
}
if(document.layers){
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=check;
 
Why would you want to disable left click? You DO know how easy that's bypassed, right?
 
At least ALT and F4 weren't disabled. :D

The page screams no fair when you turn off javascript.
 
you might wanna disable left-click to stop folkz selecting all your text and copying it.....

like those folkz who don't have big enough hands to press ctrl+A-ctrl+C-alt+tab-ctrl+v (remember, notepad is open!)
 
Back
Top