[INFO] No right click

02/28/2013 19:51 jonasadriel#1
If you want a bit more secure in your iframes use this javascript in <body></body> tags on your php scripts.
sorry if I posted in the wrong forum.
HTML Code:
<script language="javascript"
type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
 
</script>
 
 
<script type="text/javascript" language="javascript">
 
     $(function() {
 
            $(this).bind("contextmenu", function(e) {
 
                e.preventDefault();
 
            });
 
        }); 
</script>
Credits by site : [Only registered and activated users can see links. Click Here To Register...]
05/26/2013 14:13 {Skrillex}#2
Itīs doesnīt help...

if u put a view-source:
before your domain it show the Sourcecode.

Regards
05/27/2013 07:43 rempieremco153#3
You could place the scripts on your local xampp, then in your website,
load the page using file_get_contents. That way, the code can be viewed, but the source ip can't be seen. (If i'm correct) If you want people to be unable to view your sourcecode,
try encrypting it.