The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

How to disable right click?

2 posters

Go down

How to disable right click? Empty How to disable right click?

Post by supergirll4 6th March 2008, 10:40

I want to disable right click on my forum,but how?
I've forund something on here it's called (How to disable right click)But then it said"Sorry but this page is not avaible!"
supergirll4
supergirll4
Forumember

Female Posts : 126
Reputation : 0
Language : Arabic-English-Russian-a bit of french!
Location : UAE(Abu-Dhabi)

Back to top Go down

How to disable right click? Empty Re: How to disable right click?

Post by tyhodge07 6th March 2008, 10:42

heres the code i use, on the forum part, i dont think its possible tho, but i use it on my html pages and portal


Code:
<script language="Javascript1.2">

// (C) 2003 CodeLifter.com
// Source: CodeLifter.com
// Do not remove this header

// Set the message for the alert box
am = "Right Click Disabled";

// do not edit below this line
// ===========================
bV  = parseInt(navigator.appVersion)
bNS = navigator.appName=="Netscape"
bIE = navigator.appName=="Microsoft Internet Explorer"

function nrc(e) {
  if (bNS && e.which > 1){
      alert(am)
      return false
  } else if (bIE && (event.button >1)) {
    alert(am)
    return false;
  }
}

document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;

</script>
tyhodge07
tyhodge07
Forumember

Male Posts : 708
Reputation : 5
Language : english
Location : indiana

http://rcmodzone.all-up.com/

Back to top Go down

How to disable right click? Empty Re: How to disable right click?

Post by supergirll4 6th March 2008, 10:57

Thank you very much!
It's really working!
supergirll4
supergirll4
Forumember

Female Posts : 126
Reputation : 0
Language : Arabic-English-Russian-a bit of french!
Location : UAE(Abu-Dhabi)

Back to top Go down

How to disable right click? Empty Re: How to disable right click?

Post by tyhodge07 6th March 2008, 18:05

if you look for "right click disabled" like 6 lines down, you can change than in between the quotes to what youd like.
tyhodge07
tyhodge07
Forumember

Male Posts : 708
Reputation : 5
Language : english
Location : indiana

http://rcmodzone.all-up.com/

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum