Javascript String isdigits()
isdigits()
String.prototype.isdigits=function(){ return (/\D/.test(this)==false); }