In Html, I need to restrict users from entering text box that should start with a particular character/number,
(example: number 6- In this case the user can enter numbers in the text box that are starting only with "6")
Thanks
|
In Html, I need to restrict users from entering text box that should start with a particular character/number, (example: number 6- In this case the user can enter numbers in the text box that are starting only with "6") Thanks |
|||
|
|
Something like the following?
|
|||
|
|
|
You want to use a piece of javascript to check this client side. Don't forget to also validate the input server side! Everyone doesn't have javascript enabled and malicious users could just disable it to circumvent your checks. |
|||
|
|
|
|||
|
|