Thursday 31 January 2013

Hi,

Small but very usefull script. This script is for input field in which we want user can only enter phone number so if user enter any alphbates then it immediate clean .

<input type="text" id="" name="" placeholder="please enter only number and hipens" onkeyup="this.value=this.value.replace(/[^\d-]/g, '')" />

Very useful and very nice

Thanks

No comments:

Post a Comment