hi all,
we have a requirement to disable shift click and ctrl click.
i have code:
[CODE=javascript]document.onmous edown = shiftEnter;
function shiftEnter(e) {
if (event.shiftKey ) {
alert("shift key is disabled");
return false;
}
}
[/CODE]
this code is not working in Fire fox, please help.
thanks,
rakesh.
we have a requirement to disable shift click and ctrl click.
i have code:
[CODE=javascript]document.onmous edown = shiftEnter;
function shiftEnter(e) {
if (event.shiftKey ) {
alert("shift key is disabled");
return false;
}
}
[/CODE]
this code is not working in Fire fox, please help.
thanks,
rakesh.
Comment