What's the HTML code for?

I have photos in my site that i dont want any body to copy them, whats the html code for that ?

  • Answer:

    i told u in e mail lol

haya m at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

hay Hayek how r u i am an IT student so i don't know about your answer but wanna to be your friend. Please mail me i have no friend. I think you will answer me . I will wait for that. Byeeeeeeeeeeeeeeeeeeeeeeeeeeee........…

gobind_singh999

that's what you need:www.protware.com htmlGuardian

keyvan1

Here is also a javascript you can add between the <head> tags (without the * of course): **************************************… <script language=JavaScript> <!-- var message=""; /////////////////////////////////// function clickIE() {if (document.all) {(message);return false;}} function clickNS(e) {if (document.layers||(document.getElement… { if (e.which==2||e.which==3) {(message);return false;}}} if (document.layers) {document.captureEvents(Event.MOUSEDOW… else{document.onmouseup=clickNS;docume… document.oncontextmenu=new Function("return false") // --> </script> **************************************… This disables any clicking on your page from any browsers. But as it was said previously, there is no way protect an image on the net. Other solutions would be adding a password protected folder in your site, putting low quality images, or putting a semi-transparent logo or name in the middle of your picture. good luck !

Voiceless

Place this code just before the last </body> line. If you mail me I can send you the file so it's more easily copied into your HTML document. <script language=JavaScript> <!-- //Disable right mouse click Script var message="Contact Me if you require these images"; /////////////////////////////////// function clickIE4(){ if (event.button==2){ alert(message); return false; } } function clickNS4(e){ if (document.layers||document.getElementByI… 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>

Wabbitt1970

I need to see them first to see what kind of layout you're using. What's the site address? I think I can help with this. Here ya go ... still would like to visit your site though .. Here is the code: /* Disable right click script II (on images) */ var clickmessage="Sorry.. We have disabled your right click for Images!" function disableclick(e) { if (document.all) { if (event.button==2||event.button... { if (event.srcElement.tagName=="IM... alert(clickmessage); return false; } } } else if (document.layers) { if (e.which == 3) { alert(clickmessage); return false; } } else if (document.getElementById){ if (e.which==3&&e.target.tagName=... alert(clickmessage) return false } } }

D. Mann

Ultimately, there is no way to ensure your images will not get stolen unless you do not put your images on the web. There are ways you can prevent people from linking to your picture, and ways to disable the right-click. Disabling linking is a good idea because you don't need the extra bandwidth taken, but disabling right click is just annoying and doesn't really prevent someone from downloading the picture. Someone can just look in the HTML code and find the location of the picture and surf straight to it and download it, or they can just "print screen" and capture your picture.

Tenar

There isn't. You can do things with the server to stop hotlinking, but that's all.

drlzrdmn

u can use javascript to protect ur images..just search the keyword "copy protection script" at google search box..u will get many references...good luck!!

raj

as i think so there isnt any code to hide ur secrets..

prateek99000

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.