Quantcast
Viewing all articles
Browse latest Browse all 3

Answer by Bibhu for asp.net textarea line feed and preventing postback on return key

You can use this

window.onload = function() {
    setEvent("text", onKeyDown);
}

function onKeyDown()
{
   return (event.keyCode!=13)
}

Which will cancel return button in only textboxes


Viewing all articles
Browse latest Browse all 3

Trending Articles