How can i allow only numbers and dot in input area using patterns and using button
<input type="text" id="amt" name="amount" pattern="[0-9-.]" title="numbers with dot allowed">
<input type="button" value="submit">
How can i allow only numbers and dot in input area using patterns and using button
<input type="text" id="amt" name="amount" pattern="[0-9-.]" title="numbers with dot allowed">
<input type="button" value="submit">