Jak zatrzymać typ tekstu tekstu w JavaScript

$('input').keypress(function(e) {
    e.preventDefault();
});
Elated Elk