You can use this
window.onload = function() {
setEvent("text", onKeyDown);
}
function onKeyDown()
{
return (event.keyCode!=13)
}
Which will cancel return button in only textboxes
You can use this
window.onload = function() {
setEvent("text", onKeyDown);
}
function onKeyDown()
{
return (event.keyCode!=13)
}
Which will cancel return button in only textboxes