ksridhar69
10-01-2002, 06:50 PM
I am using this function. When the user presses the Ctrl+M it is giving beep noise. How to avoid this. They don't want any beep noise
function doAction()
{
if (!window.event.ctrlKey)
return;
switch (event.keyCode) {
case 13:
//alert("Ctrl-M Pressed ");
document.testform.c1.focus();
break;
}
}
function doAction()
{
if (!window.event.ctrlKey)
return;
switch (event.keyCode) {
case 13:
//alert("Ctrl-M Pressed ");
document.testform.c1.focus();
break;
}
}