Hi Friends,
I want to disable Backspace not working to move previous page but the same in the textbox backspace should work.
Pl find the source what I am using. After given this, some pages are working fine and some pages not working in the textbox. (cannot erase the content using backspace key)
Source
if (typeof window.event != 'undefined')
document.onkeydown = function () {
if (event.srcElement.tagName.toUpperCase() != 'INPUT')
return (event.keyCode != 8);
}
else
document.onkeypress = function (e) {
if (e.target.nodeName.toUpperCase() != 'INPUT')
return (e.keyCode != 8);
}
Pl suggest on this. Thanks in advance
Go to the complete details ...