Как остановить тип текста Texbox в JavaScript
$('input').keypress(function(e) {
e.preventDefault();
});
Elated Elk
$('input').keypress(function(e) {
e.preventDefault();
});