Can someone show me an example to limit user input (in input tag) in Javascript?
Something when we set the input (type = "text") to accept only numeric values, so it will ignore any input other than a number ...
I think this is convenient for entering a number (for example, zip code, credit card, money, cost, rating, date, etc.), and if you can show me how to create an input with a template, something like:
Please Input Date:
| ----------------- |
| /// |
| ----------------- |
PS: I heard that WebForms 2.0 will support this in the future ... (Acid 3 compatible browser?)
input type = "date"
input type = "time"
input type = "number"
input type = "money"
But it was only news from the future: D
javascript html user-interface input
Dels
source share