Written by Anonymous
// 現在の jQuery
$(function(){
var ua = navigator.userAgent;
if(ua.indexOf('iPhone') < 0 && ua.indexOf('Android') < 0){
$('.telhref span').each(function(){
$(this).unwrap();
});
}
});
// 上記の jQuery を下記のコードに変更
jQuery(function($) {
var ua = navigator.userAgent;
if(ua.indexOf('iPhone') < 0 && ua.indexOf('Android') < 0) {
$('.telhref span').each(function() {
$(this).unwrap();
});
}
});