/*global jQuery */
(function($) {
    $.fn.killEnter = function (params) {
        return this.each(function() {
            $(this).bind("keypress keydown", function (ev) {
                return (ev.keyCode != 13);
            });
        });
    };
})(jQuery);