المدير العام ادارة المنتدى
عدد المساهمات : 154 نقاط : 456 تاريخ التسجيل : 11/11/2009 العمر : 37
| موضوع: كود لمنع نسخ الصور فقط في الصفحة شغال 100% السبت ديسمبر 12, 2009 12:05 am | |
| كود لمنع نسخ الصور فقط في الصفحة شغال 100% <script> /* Disable right click script II (on images)- By Dynamicdrive.com For full source, Terms of service, and 100s DTHML scripts Visit [ندعوك للتسجيل في المنتدى أو التعريف بنفسك لمعاينة هذا الرابط] */ var clickmessage="Right click disabled no way !" function disableclick(e) { if (document.all) { if (event.button==2||event.button==3) { if (event.srcElement.tagName=="IMG"){ 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=="IMG"){ alert(clickmessage) return false } } } function associateimages(){ for(i=0;i<document.images.length;i++) document.images[i].onmousedown=disableclick; } if (document.all) document.onmousedown=disableclick else if (document.getElementById) document.onmouseup=disableclick else if (document.layers) associateimages() </script> | |
|