red shard
رقم العضويه : 1 الدوله :
برج :
المشاركات : 9017
العمر : 35
الدوله : www.facebook.com/Shakespear.love
بتحب ايه : www.facebook.com/Shakespear.love نقاط : 110028037 تاريخ التسجيل : 08/12/2008
| موضوع: كود منع استخدام الزر الايمن ((( لمنع سرقة الصور ))) . 2010-01-01, 8:41 am | |
| ولا .. بدون نافذة الرمز:
function ejs_nodroit() { return(false); }
document.oncontextmenu = ejs_nodroit;
ثانيا الكود بنافذة الرمز: function ejs_nodroit() { alert('ممنوع أستخدام الزر الايمن'); return(false); } document.oncontextmenu = ejs_nodroit; ثالثا الكود أخر بدون النافذة الرمز: function disableselect(e){ return false }
function reEnable(){ return true }
//if IE4+ document.onselectstart=new Function ("return false")
//if NS6 if (window.sidebar){ document.onmousedown=disableselect document.onclick=reEnable }
كود منع الزر الايمن على الصور فقط ولا يمنعه على باقى المنتدى الرمز: /* 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;idocument.images[i].onmousedown=disableclick; } if (document.all) document.onmousedown=disableclick else if (document.getElementById) document.onmouseup=disableclick else if (document.layers) associateimages()
| |
|