Disable enter key on page but not in textareas

by andyjh07

HTML

<form action="">
    <input type="text">
        <textarea name="" id="" cols="30" rows="10"></textarea>
</form>

JavaScript

// This code disables ENTER key in forms but not textareas
$(document).keypress(function (e) {
    if(e.which == 13 && e.target.nodeName != "TEXTAREA") return false;
});