When testing a web project using WAMP and Fiddler I could not connect to the virutal host on an iPad running Safari. Worked with other browsers on the devices i.e. Chrome. To get it to resolve I had to change to virtual host from site1.local to site1.lc or anything else but .local.
Category: iOS
Stop iPad and iOS devices formatting numbers on webpage
An iOS will automatically see some numbers as telephone numbers and will format the number bypassing any css styling your website might have. You can stop this by altering the Apple specific meta tags. Place the code below in the head section of your webpage. <meta name=”format-detection” content=”telephone=no”>
Remove iOS styling on input boxes
By default html input boxes will have a inner shadow style applied on iPad and other iOS devices. You can remove this styling by adding the following css code to a html input object. -webkit-appearance:none;