|
Author | Topic: Code Request (Read 30 times) |
russell Flood Fill
 member is offline
![[avatar]](http://i25.photobucket.com/albums/c52/bwskid/cid_000b01c6493076b9be206501a8c0use.gif)
Joined: Apr 2006 Gender: Male  Posts: 20
|  | Code Request « Thread Started on May 17, 2006, 2:34pm » | |
Hey i am after a code that makes it so when there is a picture in a post nobody can right click it and save it.
If it is possable i would be very gratefull for it
| The only Road Is a Open Road |
|
Smangii Texture
  member is offline
Joined: Apr 2006 Posts: 88
|  | Re: Code Request « Reply #1 on May 17, 2006, 7:12pm » | |
Yup, here ya go: Place in global headers ^^
Code:<script language=JavaScript> <!--
//Disable right mouse click Script //By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive //For full source code, visit [url]http://www.dynamicdrive.com[/url]
var message="Right-clicking Disabled!";
/////////////////////////////////// function clickIE4(){ if (event.button==2){ alert(message); return false; } }
function clickNS4(e){ if (document.layers||document.getElementById&&!document.all){ if (e.which==2||e.which==3){ alert(message); return false; } } }
if (document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onmousedown=clickNS4; } else if (document.all&&!document.getElementById){ document.onmousedown=clickIE4; }
document.oncontextmenu=new Function("alert(message);return false")
// --> </script>
|
|
| Slightly Insane Graphics & Codes »
![[image]](http://i63.photobucket.com/albums/h131/smangiisigfx/My%20Sigs/718f813d.gif) |
|
Allan Administrator
     it's All Good member is offline
![[avatar]](http://s4.images.proboards.com/avatars/devil.gif)
Joined: Nov 2005 Gender: Male  Posts: 1,515 Location: Northern PA
|  | Re: Code Request « Reply #2 on May 17, 2006, 7:12pm » | |
cool thank you for posting this
|
![[image]](http://i80.photobucket.com/albums/j194/Craziegrafix/newsidA.jpg)
|
|
russell Flood Fill
 member is offline
![[avatar]](http://i25.photobucket.com/albums/c52/bwskid/cid_000b01c6493076b9be206501a8c0use.gif)
Joined: Apr 2006 Gender: Male  Posts: 20
|  | Re: Code Request « Reply #3 on May 18, 2006, 2:36pm » | |
Thank you for the code ill upload it now
| The only Road Is a Open Road |
|
Smangii Texture
  member is offline
Joined: Apr 2006 Posts: 88
| |
|