How to Delete Phone Number on Iphone?
I have a Simple Span mobile site that has a phone number.
<span class="order1-button">999-120-9191</span>
Problem: when I open my page in iphone, it has a link to a phone number. When I click on this option it is called.
How to remove it
This is a Fiddle link . When you open it on iphone, you can find it too.
On another device button just without the link that I need.
+2
user3471582
source
to share
4 answers
I believe you can use this dataDetectorTypes
to tell the website which links to ignore.
webview.dataDetectorType = UIDataDetectorTypeNone;
See the docs for all types.
0
source to share