------------------------------------------------
------------------------------------------
2. Prevent right click on the textbox
----------------------------------------
javascript:
function preventRightClick(event)
{
if (event.button==2)
{
alert("Right Clicking disabled!");
}
}
--------------------------
3. Prevent ctrl key
---------------------------
javascript:
function PreventCtrlKey(e)
{
var code = (document.all) ? event.keyCode:e.which;
if (parseInt(code)==17)
{
alert('Ctrl key disabled');
window.event.returnValue = false;
}
}
No comments:
Post a Comment