
In a text box I can Only type A-Z & 1-10 upto 16 Digit.

<html>
<script>
function checkString(text) {
if(/[^A-Za-z\d ]/.test(text)){
alert('String should contain letters and numbers only!');
document.getElementById("st").value="";
return false;
}
if(text.length>16){
alert('You cannot exceeds the limit of 16 digits!');
document.getElementById("st").value="";
return false;
}
return true;
}
</script>
Enter Name:   <input type="text" id="st" onkeyup="checkString(this.value);">
</html>