Cómo detener el tipo de texto Texbox en JavaScript

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