با سلام… برای دسترسی به تمامی خدمات این پلاگین… به جای اینکه از این پلاگین استفاده کنید… می تونید از این کدها استفاده کنید که دقیقا همین کارهای این پلاگین رو می کنه…
function NoRightClick(e)
{
if(navigator.appName==”Netscape”)
{
if(e.which==3||e.which==2)
{
return false;
}
}
else
{
event.cancelBubble=true;
event.returnValue=false;
}
}
if(navigator.appName==”Netscape”)
window.captureEvents(Event.MOUSEDOWN)
document.oncontextmenu=NoRightClick;
window.onmousedown=NoRightClick;
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function (“return false”)
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
document.oncontextmenu = function(){return false}
document.onselectstart=function(){
if (event.srcElement.type != “text” && event.srcElement.type != “textarea” && event.srcElement.type != “password”)
return false
else return true;
};
if (window.sidebar){
document.onmousedown=function(e){
var obj=e.target;
if (obj.tagName.toUpperCase() == “INPUT” || obj.tagName.toUpperCase() == “TEXTAREA” || obj.tagName.toUpperCase() == “PASSWORD”)
return true;
else
return false;
}
}
if (parent.frames.length > 0) top.location.replace(document.location);
document.ondragstart = function(){return false}