Using this Javascript code :-
document.onmousedown=disableclick;status="Right Click Disabled";
Function disableclick(e)
{
if(event.button==2)
{
alert(status);
return false;
}
}
and to use it in page between body tag we write :
oncontextmenu="return false"
Sunday, May 11, 2008
Subscribe to:
Post Comments (Atom)


No comments:
Post a Comment