I have following input for accepting mobile number. But I think it will not work world wide. It will work for Indian mobile numbers only.(e.g. +910123456789)(+91 country code for India, 0 to 9 mobile number in India)
How to make it global using pattern=" \+ [] {}"?
I want extension of country so I have added +. How to make it work?
<input type="tel" size="40" name="phone" placeholder="Mobile: +911234567890" pattern="\+[0-9]{12,12}" autocomplete="off" required/>