Restrict enter key in textarea in jquery

by satheeshkumar 2013-04-18 14:44:18

Restrict enter key in textarea in jquery,

You can use the following code to restrict the pressing of enter key inside a textarea field,

<script type = "text/javascript">
$('textarea').bind('keypress', function(e) {
if ((e.keyCode || e.which) == 13) {
return false;
}
});
</script>
975
like
0
dislike
0
mail
flag

You must LOGIN to add comments