jQuery keyup hanya alfanumerik

if (e.which <= 90 && e.which >= 48) {
  alert('hello');
}
Thoughtful Tapir