JQUERY使用版
$(function(){
if(navigator.userAgent.indexOf('iPad') == -1 && navigator.userAgent.indexOf('iPhone') == -1 && navigator.userAgent.indexOf('Android') == -1){
$("a").each(function(){
var link = $(this).attr("href");
if(link.match(/tel:/)){
$(this).removeAttr("href");
};
})
};
});
脱じぇーくえりー版に書き換え
document.addEventListener('DOMContentLoaded', function(){
if(navigator.userAgent.indexOf('iPhone') == -1 && navigator.userAgent.indexOf('iPad') == -1 && navigator.userAgent.indexOf('Android') == -1){
anchorTags = document.querySelectorAll('a');
anchorTags.forEach(function(anchorTag){
if(anchorTag.getAttribute('href').match(/tel:/)){
anchorTag.removeAttribute('href');
}
});
}
}, false);