JQUERY KEYUP uniquement alphanumérique
if (e.which <= 90 && e.which >= 48) {
alert('hello');
}
Thoughtful Tapir
if (e.which <= 90 && e.which >= 48) {
alert('hello');
}