Here is the code for my numeric input field:
<input type="number" id="payment-textbox" name="payment-textbox" min="1" max="100000" maxlength="9" class="payment" placeholder="--" value=""/>
While this code functions properly in Google Chrome, I encountered an issue with Mozilla Firefox. When attempting to enter a float number, Firefox highlights the box with a red border. Is there a way to prevent Firefox from validating float numbers?