| | |||||
| ||||||||
| CODE This forum is for posting code snippets and example scripts that aren't quite tutorials, but could be useful for others. You may post code snippets and/or completed scripts that you've written and want to share here. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| First Time Poster! Join Date: Aug 2003
Posts: 1
![]() | Javascript: Silent No Right Click this will stop stupid theives but smart ones can still steal your work but heres the code it blocks right click yet it doesnt have the annoying alert message Code: <script language=JavaScript>
<!--
//Code by Justin / Web X Designs
var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
// --> </script>
__________________ http://webx.digitaldoozie.com/interface.jpg Owner Of Web X Designs http://www.ihtml.tk |
| |
| | #3 (permalink) |
| NamePros Member Join Date: Jul 2003
Posts: 118
![]() | Good man!!
__________________ Paulicon Web design - Your one stop shop |
| |
| | #5 (permalink) |
| NamePros Member Join Date: Jul 2003
Posts: 68
![]() | thing is.. just click view at the top of your browser... then click source.. lol - has the same effect also ... didnt we all view source and nick stuff off other peoples pages... it's all part of the way of the internet.. don't be spoil sports ![]() nick |
| |
| | #7 (permalink) |
| NamePros Regular Join Date: Sep 2002 Location: Canada
Posts: 481
![]() | View source, in most instances, will supply you with a url to all images contained on said page. There is no way to be 100% safe from rippers.
__________________ Sometimes I lay awake at night and I ask "Where have I gone wrong?" Then a little voice says "This is going to take more than one night" |
| |
| | #8 (permalink) | ||||||||
| Senior Member Join Date: Jun 2003 Location: Naperville Illinois
Posts: 1,786
![]() ![]() ![]() ![]() |
__________________
| ||||||||
| |
| | #9 (permalink) | ||||
| Senior Member Join Date: Nov 2003 Location: Merlion City
Posts: 1,208
![]() ![]() |
__________________ ermm..do i need to put my sig here? Free Short URL | Free Reseller Hosting | Free cPanel Blog Hosting Hottest New Posters & Prints | ||||
| |
| | #10 (permalink) |
| NamePros Regular Join Date: May 2003 Location: USA
Posts: 609
![]() | Well...you also can save an image through veiw source. This script really helps with someone not stealing your images...
__________________ AllOfftopic.com - The name says it all. A forum that is uncensored, fun, and you can post anything you want. :rolleyes: |
| |