Restrict enter key in textarea in jquery
by satheeshkumar[ Edit ] 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>