I had a customer with an iPhonee 10 tell me that he could not get past the pattern matching on OCST which required dashes in the telephone number.
is there an easy way to test for mobile device so I can serve the input statement without pattern matches for mobile devices including the iPhone10?
Code:
<input type="tel" title=" must exactly match the pattern 123-456-7890 with 10 digits, dashes and no spaces [X]" placeholder="ex: 123-456-7890" name="ShipPhone" id="l-ShipPhone" value="&mvte:global:ShipPhone;" class="input" required autocomplete="new-shiphone" pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}">
Comment