﻿$(document).ready(function() {

    //this is to disable the enter key press
    $('body').keypress(function(e) {
        var target = e.target;
        var type = target.type;
        if (type != 'textarea') {
            var key;
            if (window.event)
                key = window.event.keyCode; //IE
            else
                key = e.which; //firefox
            if (key == 13) {
                //do nothing
            }

            return (key != 13);
        }
    });

    //this is to disable the enter key press
    $('input').keypress(function(e) {
        var target = e.target;
        var type = target.type;
        if (type != 'textarea') {
            var key;
            if (window.event)
                key = window.event.keyCode; //IE
            else
                key = e.which; //firefox
            if (key == 13) {
                //do nothing
            }

            return (key != 13);
        }
    });

});

