Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<input type="text" onblur="this.value=numsOnly(this.value)">
function numsOnly(str){
var output='',chars='0123456789.'
for(i=0;i<str.length;i++{
if(chars.indexOf(str.charAt(i))>-1){
output+=str.charAt(i)
}
}
return output;
}