$(document).ready(function(){
	$('textarea').keypress(function(e){
		return (e.keyCode==8 || $(this).val().length<=1024);
	});
});

